From b864f2204e55ba21e16d679475cfd4ef690caa02 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 3 Feb 2026 10:30:22 +0000 Subject: [PATCH 01/42] FPVTL-2022 : added Awaiting Information --- src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java index c6b9f803dc9..46f241ca25b 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java @@ -75,8 +75,8 @@ public enum CaseEvent { AMEND_OTHER_PEOPLE_IN_THE_CASE_REVISED("amendOtherPeopleInTheCaseRevised"), APPLICANT_DETAILS("applicantsDetails"), REVIEW_ADDITIONAL_APPLICATION("reviewAdditionalApplication"), - CLOSE_REVIEW_RA_REQUEST_TASK("closeReviewRARequestTask"); - + CLOSE_REVIEW_RA_REQUEST_TASK("closeReviewRARequestTask"), + AWAITING_INFORMATION("awaitingInformation"); private final String value; CaseEvent(String value) { From d73feec4011fe550b194d0f33ef11e0980207392 Mon Sep 17 00:00:00 2001 From: Hari maddali Date: Tue, 3 Feb 2026 11:52:29 +0000 Subject: [PATCH 02/42] FPVTL-2022 - Initial changes for Awaiting Information Case --- src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java index 46f241ca25b..aba143af475 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java @@ -77,6 +77,7 @@ public enum CaseEvent { REVIEW_ADDITIONAL_APPLICATION("reviewAdditionalApplication"), CLOSE_REVIEW_RA_REQUEST_TASK("closeReviewRARequestTask"), AWAITING_INFORMATION("awaitingInformation"); + private final String value; CaseEvent(String value) { From 24b00822a69c43e184f03da6c5d6f9ee47878ff4 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Fri, 6 Feb 2026 12:01:59 +0000 Subject: [PATCH 03/42] FPVTL-2022 - added awaiting information --- .../AwaitingInformationController.java | 76 ++++++++++++++++ .../uk/gov/hmcts/reform/prl/enums/State.java | 4 +- .../services/AwaitingInformationService.java | 89 +++++++++++++++++++ 3 files changed, 168 insertions(+), 1 deletion(-) create mode 100644 src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java create mode 100644 src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java new file mode 100644 index 00000000000..6e84a1168f4 --- /dev/null +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -0,0 +1,76 @@ +package uk.gov.hmcts.reform.prl.controllers; + +import com.fasterxml.jackson.databind.ObjectMapper; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.responses.ApiResponses; +import io.swagger.v3.oas.annotations.security.SecurityRequirement; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestHeader; +import org.springframework.web.bind.annotation.RestController; +import uk.gov.hmcts.reform.ccd.client.model.AboutToStartOrSubmitCallbackResponse; +import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; +import uk.gov.hmcts.reform.prl.services.AuthorisationService; +import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; +import uk.gov.hmcts.reform.prl.services.UserService; + +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.INVALID_CLIENT; + +@Slf4j +@RestController +@RequiredArgsConstructor(onConstructor = @__(@Autowired)) +public class AwaitingInformationController { + private final AwaitingInformationService awaitingInformationService; + private final ObjectMapper objectMapper; + private final UserService userService; + private final AuthorisationService authorisationService; + + @PostMapping(path = "/submit-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) + @Operation(description = "Copy fl401 case name to C100 Case name") + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "Callback processed.", + content = @Content(mediaType = "application/json", schema = @Schema(implementation = AboutToStartOrSubmitCallbackResponse.class))), + @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) + @SecurityRequirement(name = "Bearer Authentication") + public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( + @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, + @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, + @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest + ) { + if (authorisationService.isAuthorized(authorisation,s2sToken)) { + log.info("entered and submitted"); + return AboutToStartOrSubmitCallbackResponse.builder().build(); + } else { + throw (new RuntimeException(INVALID_CLIENT)); + } + } + + @PostMapping(path = "/populate-header-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) + @Operation(description = "Callback to populate the header awaiting information") + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "Callback to populate the header awaiting information Processed.", + content = @Content(mediaType = "application/json", schema = @Schema(implementation = AboutToStartOrSubmitCallbackResponse.class))), + @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) + public AboutToStartOrSubmitCallbackResponse populateHeader( + @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, + @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, + @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest + ) { + if (authorisationService.isAuthorized(authorisation,s2sToken)) { + log.info("entered header method"); + return AboutToStartOrSubmitCallbackResponse.builder() + .build(); + } else { + throw (new RuntimeException(INVALID_CLIENT)); + } + } +} diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/State.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/State.java index 638b493c461..df49d4322c8 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/enums/State.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/State.java @@ -30,7 +30,9 @@ public enum State { READY_FOR_DELETION("READY_FOR_DELETION", "Ready for deletion"), DECISION_OUTCOME("DECISION_OUTCOME","Hearing Outcome"), PROCEEDS_IN_HERITAGE_SYSTEM("PROCEEDS_IN_HERITAGE_SYSTEM", - "Proceeding in offline mode in familyman system"); + "Proceeding in offline mode in familyman system"), + AWAITING_INFORMATION("AWAITING_INFORMATION", + "Awaiting information"); private final String value; private final String label; diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java new file mode 100644 index 00000000000..0ee97bf924d --- /dev/null +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -0,0 +1,89 @@ +package uk.gov.hmcts.reform.prl.services; + +import lombok.RequiredArgsConstructor; +import org.springframework.stereotype.Component; +import uk.gov.hmcts.reform.idam.client.models.UserDetails; +import uk.gov.hmcts.reform.prl.enums.CaseNoteDetails; +import uk.gov.hmcts.reform.prl.models.Element; +import uk.gov.hmcts.reform.prl.models.dto.ccd.CaseData; + +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.Comparator; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import static uk.gov.hmcts.reform.prl.utils.ElementUtils.element; + +/** + * This class is added only as a java service example. It can be deleted when more services is added. + */ +@Component +@RequiredArgsConstructor +public class AwaitingInformationService { + + public static final String ADD_CASE_NOTE_HEADER_1_TEXT = "addCaseNoteHeaderCaseNameText"; + public static final String SUBJECT = "subject"; + public static final String CASE_NOTE = "caseNote"; + public static final String CASE_NAME = "Case Name: "; + + public List> addCaseNoteDetails(CaseData caseData, UserDetails userDetails) { + CaseNoteDetails currentCaseNoteDetails = getCurrentCaseNoteDetails(caseData, userDetails); + return getCaseNoteDetails(caseData, currentCaseNoteDetails); + } + + public List> getCaseNoteDetails(CaseData caseData, CaseNoteDetails currentCaseNoteDetails) { + List> caseNotesCollection = null; + if (currentCaseNoteDetails != null) { + Element caseNoteDetails = element(currentCaseNoteDetails); + if (caseData.getCaseNotes() != null) { + caseNotesCollection = caseData.getCaseNotes(); + caseNotesCollection.add(caseNoteDetails); + } else { + caseNotesCollection = new ArrayList<>(); + caseNotesCollection.add(caseNoteDetails); + } + caseNotesCollection.sort(Comparator.comparing(m -> m.getValue().getDateCreated(), Comparator.reverseOrder())); + } + return caseNotesCollection; + } + + private CaseNoteDetails getCurrentCaseNoteDetails(CaseData caseData, UserDetails userDetails) { + return CaseNoteDetails.builder() + .subject(caseData.getSubject()) + .caseNote(caseData.getCaseNote()) + .user(userDetails.getFullName()) + .dateAdded(LocalDate.now().toString()) + .dateCreated(LocalDateTime.now()) + .build(); + } + + public CaseNoteDetails getCurrentCaseNoteDetails(String subject, String caseNote, UserDetails userDetails) { + return CaseNoteDetails.builder() + .subject(subject) + .caseNote(caseNote) + .user(userDetails.getFullName()) + .dateAdded(LocalDate.now().toString()) + .dateCreated(LocalDateTime.now()) + .build(); + } + + public void clearFields(Map caseDataUpdated) { + caseDataUpdated.put(SUBJECT, null); + caseDataUpdated.put(CASE_NOTE, null); + } + + public Map populateHeader(CaseData caseData) { + Map headerMap = new HashMap<>(); + headerMap.put(ADD_CASE_NOTE_HEADER_1_TEXT, getHeaderInfo(caseData)); + return headerMap; + } + + private String getHeaderInfo(CaseData caseData) { + StringBuilder headerInfo = new StringBuilder(); + headerInfo.append(CASE_NAME + caseData.getApplicantCaseName()); + return headerInfo.toString(); + } +} From d3365905d5dd530ac5c79cb7e435c0e2acb9fc18 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Fri, 6 Feb 2026 16:34:52 +0000 Subject: [PATCH 04/42] FPVTL-2022 - added awaiting information --- dd.log | 33748 ++++++++++++++++ .../AwaitingInformationController.java | 40 +- .../AwaitingInformationReasonEnum.java | 41 + .../models/dto/ccd/AwaitingInformation.java | 21 + .../services/AwaitingInformationService.java | 73 +- 5 files changed, 33851 insertions(+), 72 deletions(-) create mode 100644 dd.log create mode 100644 src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java create mode 100644 src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java diff --git a/dd.log b/dd.log new file mode 100644 index 00000000000..5ae0660d8dc --- /dev/null +++ b/dd.log @@ -0,0 +1,33748 @@ + +> Configure project : +Runs pact Tests + +> Task :buildCCDXlsx +Import... + loading workbook: ./data/ccd-template.xlsx + importing sheet data from AuthorisationCaseEvent directory + importing sheet data from AuthorisationCaseField directory + importing sheet data from AuthorisationCaseState.json file + importing sheet data from AuthorisationCaseType.json file + importing sheet data from AuthorisationComplexType directory + importing sheet data from CaseEvent directory + importing sheet data from CaseEventToComplexTypes.json file + importing sheet data from CaseEventToComplexTypes directory + importing sheet data from CaseEventToFields directory + importing sheet data from CaseField directory + importing sheet data from CaseRoles.json file + importing sheet data from CaseType.json file + importing sheet data from CaseTypeTab directory + importing sheet data from Categories directory + importing sheet data from ChallengeQuestion.json file + importing sheet data from ComplexTypes.json file + importing sheet data from ComplexTypes directory + importing sheet data from FixedLists.json file + importing sheet data from Jurisdiction.json file + importing sheet data from RoleToAccessProfiles directory + importing sheet data from SearchCasesResultFields directory + importing sheet data from SearchCriteria.json file + importing sheet data from SearchInputFields.json file + importing sheet data from SearchParty.json file + importing sheet data from SearchResultFields.json file + importing sheet data from State.json file + importing sheet data from UserProfile.json file + importing sheet data from WorkBasketInputFields.json file + importing sheet data from WorkBasketResultFields.json file + saving workbook: ../definitions/private-law/xlsx/ccd-config-PRL-local.xlsx +done. + +> Task :compileJava UP-TO-DATE +> Task :processResources UP-TO-DATE +> Task :classes UP-TO-DATE +> Task :compileCftlibJava UP-TO-DATE +> Task :processCftlibResources UP-TO-DATE +> Task :cftlibClasses UP-TO-DATE +> Task :resolveMainClassName UP-TO-DATE +> Task :createManifestApplication +> Task :loadEnvSecrets +> Task :writeManifestRuntime +> Task :writeManifestaac-manage-case-assignment +> Task :writeManifestam-role-assignment-service +> Task :writeManifestccd-case-document-am-api +> Task :writeManifestccd-data-store-api +> Task :writeManifestccd-definition-store-api +> Task :writeManifestccd-user-profile-api +> Task :writeManifestdg-docassembly-api +> Task :writeManifestwa-task-management-api + +> Task :bootWithCCD +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +16:24:02,844 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.12 +16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Here is a list of configurators discovered as a service, by rank: +16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,864 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,864 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,865 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +16:24:02,865 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,866 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,866 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,870 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,015 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,017 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,017 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@725b62bf - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,017 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,017 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,017 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,017 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,018 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,018 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,018 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,019 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,019 |-INFO in ch.qos.logback.core.util.ContextUtil@4743a487 - Registering shutdown hook with JVM runtime. +16:24:03,022 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,022 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,032 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,035 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,070 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,070 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,071 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,072 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,079 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,079 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,079 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,081 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log" substituted for "${cftlib_log_file}" +16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,087 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log] +16:24:03,088 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,088 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,088 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@725b62bf - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@43a40ff - End of configuration. +16:24:03,090 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@72d4fc91 - Registering current configuration as safe fallback point +16:24:03,090 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 225 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:02,929 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.18 +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Here is a list of configurators discovered as a service, by rank: +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,930 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +16:24:02,930 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,932 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,932 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,934 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,938 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@36332832 - Resource [logback.xml] occurs multiple times on the classpath. +16:24:02,938 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@36332832 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,938 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@36332832 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:02,944 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,029 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,033 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,035 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3fe1344e - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,036 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,036 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,036 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,036 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,037 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,038 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,038 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,038 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,039 |-INFO in ch.qos.logback.core.util.ContextUtil@62298909 - Registering shutdown hook with JVM runtime. +16:24:03,043 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,043 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,097 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the +16:24:03,097 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,097 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,098 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,098 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,098 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,099 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,099 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log" substituted for "${cftlib_log_file}" +16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,102 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log] +16:24:03,102 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,102 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,102 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3fe1344e - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@10a88068 - End of configuration. +16:24:03,105 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@67852c4a - Registering current configuration as safe fallback point +16:24:03,105 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 173 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:02,939 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.22 +16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Here is a list of configurators discovered as a service, by rank: +16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,941 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,941 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,941 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,941 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@414b137e - Resource [logback.xml] occurs multiple times on the classpath. +16:24:02,941 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@414b137e - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,941 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@414b137e - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:02,943 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@3c3504a1 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,040 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,044 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,044 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3530b3b9 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,045 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,045 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,045 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,045 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,046 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,047 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,047 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,047 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,047 |-INFO in ch.qos.logback.core.util.ContextUtil@2c799682 - Registering shutdown hook with JVM runtime. +16:24:03,047 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:03,055 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:03,055 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:03,058 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,059 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,067 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,068 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,100 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,100 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,100 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,101 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,101 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log" substituted for "${cftlib_log_file}" +16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,104 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log] +16:24:03,105 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,105 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,105 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3530b3b9 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@387d8fa0 - End of configuration. +16:24:03,105 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@e937d26 - Registering current configuration as safe fallback point +16:24:03,106 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 165 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:02,943 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.18 +16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Here is a list of configurators discovered as a service, by rank: +16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,946 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +16:24:02,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +16:24:02,946 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,946 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,947 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,947 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,948 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@51a6dbe0 - Resource [logback.xml] occurs multiple times on the classpath. +16:24:02,948 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@51a6dbe0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,948 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@51a6dbe0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:02,949 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,054 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,062 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,062 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@16641784 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,063 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,070 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,070 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,070 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,070 |-INFO in ch.qos.logback.core.util.ContextUtil@47c3fbe4 - Registering shutdown hook with JVM runtime. +16:24:03,073 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,073 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,085 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,117 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the +16:24:03,117 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,117 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,118 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,118 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,119 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,119 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,119 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,119 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,122 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log" substituted for "${cftlib_log_file}" +16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,125 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log] +16:24:03,127 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,127 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,127 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@16641784 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@4b4c887b - End of configuration. +16:24:03,128 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@6fce9c39 - Registering current configuration as safe fallback point +16:24:03,128 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 181 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:02,952 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.18 +16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Here is a list of configurators discovered as a service, by rank: +16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,958 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,958 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,960 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +16:24:02,961 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +16:24:02,962 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +16:24:02,962 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 2 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,962 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,963 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,963 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,963 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,964 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1db79d1d - Resource [logback.xml] occurs multiple times on the classpath. +16:24:02,964 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1db79d1d - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,964 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1db79d1d - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:02,972 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,083 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,088 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,089 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@6206ff8c - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,089 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,089 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,089 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,090 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,090 |-INFO in ch.qos.logback.core.util.ContextUtil@7182d9d4 - Registering shutdown hook with JVM runtime. +16:24:03,091 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,091 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,121 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the +16:24:03,121 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,121 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,121 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,121 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,124 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,124 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,124 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log" substituted for "${cftlib_log_file}" +16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,128 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log] +16:24:03,129 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,129 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,129 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@6206ff8c - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@26971160 - End of configuration. +16:24:03,129 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@2306042c - Registering current configuration as safe fallback point +16:24:03,130 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 166 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:02,945 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found logback-classic version 1.5.25 +16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Here is a list of configurators discovered as a service, by rank: +16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,948 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,948 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,948 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,952 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1a5a3830 - Resource [logback.xml] occurs multiple times on the classpath. +16:24:02,952 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1a5a3830 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,952 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1a5a3830 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:02,957 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@74f0222c - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,068 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,075 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,075 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@5b65e111 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,076 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,077 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,077 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,077 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,078 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,079 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,079 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,079 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,080 |-INFO in ch.qos.logback.core.util.ContextUtil@1035d9f5 - Registering shutdown hook with JVM runtime. +16:24:03,080 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:03,082 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:03,082 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" +16:24:03,087 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,087 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,094 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,125 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,125 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,125 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,126 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,126 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,129 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,129 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,131 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" +16:24:03,132 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,132 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,132 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log] +16:24:03,133 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,133 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,133 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,133 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,133 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@5b65e111 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,133 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,136 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6521789d - End of configuration. +16:24:03,137 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@7c894122 - Registering current configuration as safe fallback point +16:24:03,137 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 189 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:02,947 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found logback-classic version 1.5.25 +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Here is a list of configurators discovered as a service, by rank: +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,954 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,954 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,954 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,954 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,954 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,956 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@72e301c0 - Resource [logback.xml] occurs multiple times on the classpath. +16:24:02,956 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@72e301c0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,956 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@72e301c0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:02,958 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@366bfed7 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,048 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,054 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,055 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2b5e8a4e - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,055 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,057 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,057 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,057 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,057 |-INFO in ch.qos.logback.core.util.ContextUtil@415963e4 - Registering shutdown hook with JVM runtime. +16:24:03,057 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:03,072 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:03,072 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:03,085 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/dg-docassembly-api.log" substituted for "${cftlib_log_file}" +16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,096 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,129 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,129 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,129 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,131 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,131 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,134 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,135 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,135 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,138 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,138 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,141 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/dg-docassembly-api.log" substituted for "${cftlib_log_file}" +16:24:03,142 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,142 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,142 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/dg-docassembly-api.log] +16:24:03,151 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,151 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,151 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2b5e8a4e - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,152 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@282da05e - End of configuration. +16:24:03,152 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@700dc16b - Registering current configuration as safe fallback point +16:24:03,152 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 198 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:02,951 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found logback-core version 1.5.27 +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Here is a list of configurators discovered as a service, by rank: +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 3 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:02,959 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:02,960 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,961 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@59468d22 - Resource [logback.xml] occurs multiple times on the classpath. +16:24:02,961 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@59468d22 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:02,961 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@59468d22 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:03,090 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,090 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Scan attribute not set or set to unrecognized value. +16:24:03,094 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,095 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59107234 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,095 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,096 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,096 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,096 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,096 |-INFO in ch.qos.logback.core.util.ContextUtil@7884c2a1 - Registering shutdown hook with JVM runtime. +16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" +16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,111 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,112 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,150 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,150 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,150 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,156 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,156 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,156 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,157 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,157 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,158 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" +16:24:03,158 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,158 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,159 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log] +16:24:03,160 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,160 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,160 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59107234 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@15467f0e - End of configuration. +16:24:03,161 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@340820d3 - Registering current configuration as safe fallback point +16:24:03,161 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 205 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + + :: Spring Boot :: (v3.4.6) + +16:24:03,488 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.24 +16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Here is a list of configurators discovered as a service, by rank: +16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. +16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator +16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:03,495 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:24:03,496 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:24:03,496 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:03,497 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@770a50a8 - Resource [logback.xml] occurs multiple times on the classpath. +16:24:03,497 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@770a50a8 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] +16:24:03,497 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@770a50a8 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] +16:24:03,499 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@4e6953e4 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,586 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,591 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,592 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@514b734b - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,593 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,593 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,593 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,593 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,595 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,598 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,599 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,599 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,599 |-INFO in ch.qos.logback.core.util.ContextUtil@7461e6da - Registering shutdown hook with JVM runtime. +16:24:03,599 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:03,600 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:03,600 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:03,604 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" +16:24:03,607 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,607 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,621 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,622 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,661 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,661 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,661 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,662 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,662 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,665 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,666 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,666 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,667 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,667 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,669 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" +16:24:03,669 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,669 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,669 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log] +16:24:03,670 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,670 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,670 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,670 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,670 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@514b734b - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,670 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,677 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@70937dc1 - End of configuration. +16:24:03,698 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@4261e5be - Registering current configuration as safe fallback point +16:24:03,698 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 203 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +16:24:03,713 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,723 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,724 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,724 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@394bc9bf - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:03,724 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,724 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,724 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,724 |-INFO in ch.qos.logback.core.util.ContextUtil@30466116 - Registering shutdown hook with JVM runtime. +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,725 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,725 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,725 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,725 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,725 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log" substituted for "${cftlib_log_file}" +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,726 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log] +16:24:03,726 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,726 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@394bc9bf - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,726 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,726 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@394bc9bf - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6f78464b - End of configuration. +16:24:03,726 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@6536a560 - Registering current configuration as safe fallback point + +16:24:03,723 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@670034d2 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,731 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,732 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@1a5a03a7 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,732 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,732 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,732 |-INFO in ch.qos.logback.core.util.ContextUtil@65e49a08 - Registering shutdown hook with JVM runtime. +16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" +16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,734 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,734 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,734 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,734 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,734 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" +16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,735 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log] +16:24:03,736 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,736 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@1a5a03a7 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,736 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,736 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@1a5a03a7 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@32494c2 - End of configuration. +16:24:03,736 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@753fcea3 - Registering current configuration as safe fallback point + + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + + :: Spring Boot :: (v3.4.1) + +16:24:03,741 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,746 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,746 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,747 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@24eb7b54 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:03,747 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,747 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,747 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,747 |-INFO in ch.qos.logback.core.util.ContextUtil@77d00612 - Registering shutdown hook with JVM runtime. +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,747 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the +16:24:03,747 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,747 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,747 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,747 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log" substituted for "${cftlib_log_file}" +16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,750 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log] +16:24:03,750 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,750 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@24eb7b54 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,750 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,750 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@24eb7b54 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@12677ba7 - End of configuration. +16:24:03,750 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@35396574 - Registering current configuration as safe fallback point + +16:24:03,796 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@50899a23 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,802 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@11a7e184 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,802 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,802 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,802 |-INFO in ch.qos.logback.core.util.ContextUtil@1d7067e8 - Registering shutdown hook with JVM runtime. +16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,803 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,803 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,803 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,803 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,803 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log" substituted for "${cftlib_log_file}" +16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,804 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log] +16:24:03,804 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,804 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@11a7e184 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,805 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,805 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@11a7e184 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@1b4aee7 - End of configuration. +16:24:03,805 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@54af0873 - Registering current configuration as safe fallback point + +16:24:03,791 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,806 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,806 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59c49388 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:03,806 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,806 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,806 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,806 |-INFO in ch.qos.logback.core.util.ContextUtil@3795cb0c - Registering shutdown hook with JVM runtime. +16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,813 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the +16:24:03,813 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,813 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,813 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,813 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,813 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,813 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,813 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log" substituted for "${cftlib_log_file}" +16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,817 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log] +16:24:03,818 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,818 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59c49388 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,818 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,818 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59c49388 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@7ffe67e1 - End of configuration. +16:24:03,818 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@270f0359 - Registering current configuration as safe fallback point + + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + + :: Spring Boot :: (v3.4.1) + + __ __ _____ _ __ _ __ + ______________/ / ____/ /__ / __(_)___ (_) /_(_)___ ____ _____/ /_____ ________ + / ___/ ___/ __ /_____/ __ / _ \/ /_/ / __ \/ / __/ / __ \/ __ \______/ ___/ __/ __ \/ ___/ _ \ +/ /__/ /__/ /_/ /_____/ /_/ / __/ __/ / / / / / /_/ / /_/ / / / /_____(__ ) /_/ /_/ / / / __/ +\___/\___/\__,_/ \__,_/\___/_/ /_/_/ /_/_/\__/_/\____/_/ /_/ /____/\__/\____/_/ \___/ + + :: Spring Boot :: (v3.4.1) + +16:24:03,883 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:03,901 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,902 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,903 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2236ac2d - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:03,903 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,903 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,903 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,903 |-INFO in ch.qos.logback.core.util.ContextUtil@515efacb - Registering shutdown hook with JVM runtime. +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,904 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the +16:24:03,904 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,904 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,904 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,904 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log" substituted for "${cftlib_log_file}" +16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,905 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log] +16:24:03,905 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,905 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2236ac2d - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,905 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,905 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2236ac2d - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ccf3994 - End of configuration. +16:24:03,905 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@6208b607 - Registering current configuration as safe fallback point + +2026-02-06T16:24:03.919 INFO [main] uk.gov.hmcts.reform.ccd.documentam.Application Starting Application using Java 21.0.10 with PID 117001 (/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/ccd-case-document-am-api/0.19.2017/1ab04d33982c3c2246f2bb8be2a1c319f8867317/ccd-case-document-am-api-0.19.2017.jar started by ravi in /home/ravi/workspaces/projects/prl-cos-api) +2026-02-06T16:24:03.921 INFO [main] uk.gov.hmcts.reform.ccd.documentam.Application The following 1 profile is active: "local" +16:24:03,930 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:03,930 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Scan attribute not set or set to unrecognized value. +16:24:03,931 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:03,931 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@103bc60b - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:03,931 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:03,931 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:03,931 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:03,931 |-INFO in ch.qos.logback.core.util.ContextUtil@1674e582 - Registering shutdown hook with JVM runtime. +16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" +16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,934 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:03,934 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:03,934 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:03,934 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:03,934 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" +16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:03,935 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log] +16:24:03,935 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:03,936 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@103bc60b - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:03,936 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:03,936 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@103bc60b - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@679c1bc3 - End of configuration. +16:24:03,936 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@464edde3 - Registering current configuration as safe fallback point + +2026-02-06T16:24:03.959 INFO [main] u.g.h.ccd.definition.store.CaseDataAPIApplication Starting CaseDataAPIApplication vunspecified using Java 21.0.10 with PID 117001 (/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/application/0.19.2017/966978f77ac0995df05c488a518d8a59fcba255d/application-0.19.2017.jar started by ravi in /home/ravi/workspaces/projects/prl-cos-api) +2026-02-06T16:24:03.960 INFO [main] u.g.h.ccd.definition.store.CaseDataAPIApplication The following 1 profile is active: "local" + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + + :: Spring Boot :: (v3.4.4) + +2026-02-06T16:24:04.051 INFO [background-preinit] org.hibernate.validator.internal.util.Version HV000001: Hibernate Validator 8.0.2.Final +2026-02-06T16:24:04.115 INFO [main] u.gov.hmcts.reform.wataskmanagementapi.Application Starting Application using Java 21.0.10 with PID 117001 (/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/wa-task-management-api/0.19.2017/d551f7757caf033086b7e48d6936ab192f1ef75f/wa-task-management-api-0.19.2017.jar started by ravi in /home/ravi/workspaces/projects/prl-cos-api) +2026-02-06T16:24:04.119 DEBUG [main] u.gov.hmcts.reform.wataskmanagementapi.Application Running with Spring Boot v3.4.4, Spring v6.2.5 +2026-02-06T16:24:04.119 INFO [main] u.gov.hmcts.reform.wataskmanagementapi.Application The following 1 profile is active: "local" +16:24:04,249 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@2cc14eb9 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:04,299 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:04,300 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2518e37b - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:04,300 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:04,300 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:04,300 |-INFO in ch.qos.logback.core.util.ContextUtil@77b2f362 - Registering shutdown hook with JVM runtime. +16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:04,301 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:04,301 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:04,301 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:04,301 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:04,301 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:04,301 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:04,301 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:04,301 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" +16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:04,302 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log] +16:24:04,302 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@51a0cfab - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2518e37b - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:04,302 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@51a0cfab - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2518e37b - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:04,303 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:04,303 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@2a12f7f2 - End of configuration. +16:24:04,303 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@4873daf0 - Registering current configuration as safe fallback point + + __ __ __ __ + ______________/ / ____/ /___ _/ /_____ _ _____/ /_____ ________ + / ___/ ___/ __ /_____/ __ / __ `/ __/ __ `/_____/ ___/ __/ __ \/ ___/ _ \ +/ /__/ /__/ /_/ /_____/ /_/ / /_/ / /_/ /_/ /_____(__ ) /_/ /_/ / / / __/ +\___/\___/\__,_/ \__,_/\__,_/\__/\__,_/ /____/\__/\____/_/ \___/ + + :: Spring Boot :: (v3.4.1) + +2026-02-06T16:24:04.397 INFO [background-preinit] org.hibernate.validator.internal.util.Version HV000001: Hibernate Validator 8.0.2.Final + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + + :: Spring Boot :: (v3.5.10) + +16:24:04,781 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:04,783 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:04,783 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:04,783 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@32029424 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:04,785 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:04,786 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:04,786 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:04,786 |-INFO in ch.qos.logback.core.util.ContextUtil@64df095c - Registering shutdown hook with JVM runtime. +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:04,786 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the +16:24:04,786 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:04,786 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:04,786 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:04,786 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log" substituted for "${cftlib_log_file}" +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:04,787 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log] +16:24:04,787 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:04,787 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@32029424 - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:04,787 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:04,787 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@32029424 - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@25fd64d9 - End of configuration. +16:24:04,787 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@3d81d635 - Registering current configuration as safe fallback point + + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + + :: Spring Boot :: (v3.3.11) + +2026-02-06T16:24:04.830 INFO [main] u.g.h.r.roleassignment.RoleAssignmentApplication The following 1 profile is active: "local" +16:24:04,835 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@5353b35f - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file +16:24:04,837 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:04,858 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:04,858 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@4179817e - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:04,858 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:04,859 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:04,859 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:04,859 |-INFO in ch.qos.logback.core.util.ContextUtil@7bd14a2c - Registering shutdown hook with JVM runtime. +16:24:04,859 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml +16:24:04,859 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} +16:24:04,859 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:04,859 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:04,859 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:04,859 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:04,860 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:04,860 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" +16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:04,863 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:04,866 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log] +16:24:04,866 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:04,866 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@4179817e - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:04,866 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:04,866 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@4179817e - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@35d6c742 - End of configuration. +16:24:04,866 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@3660934c - Registering current configuration as safe fallback point + + __ + ____ ___ ____ _____ _________ _________ ____ __________ _____ ___ / / + / __ `__ \/ __ `/ __ \__/ ___/ __ `/ ___/ _ \__/ __ `/ ___/ __ `/ __ `__ \/ __ +/ / / / / / /_/ / / / /_/ /__/ /_/ (__ ) __/_/ /_/ (__ ) /_/ / / / / / / /_ +_/ /_/ /_/\__,_/_/ /_/ \___/\__,_/____/\___/ \__,_/____/\__, /_/ /_/ /_/\__/ + /____/ + :: Spring Boot :: (v3.4.1) + +16:24:05,126 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" +16:24:05,126 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Scan attribute not set or set to unrecognized value. +16:24:05,126 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack +16:24:05,127 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3205d38d - Propagating DEBUG level on Logger[ROOT] onto the JUL framework +16:24:05,127 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "50" substituted for "${EXCEPTION_LENGTH:-50}" +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "50" substituted for "${LOGGER_LENGTH:-50}" +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "%d{yyyy-MMM-dd HH:mm:ss.SSS} %-5level [%thread] %logger{15} - %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" +16:24:05,127 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook +16:24:05,127 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] +16:24:05,127 |-INFO in ch.qos.logback.core.util.ContextUtil@6ed84a4f - Registering shutdown hook with JVM runtime. +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "%d{yyyy-MMM-dd HH:mm:ss.SSS} %-5level [%thread] %logger{15} - %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:05,127 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the +16:24:05,127 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. +16:24:05,127 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] +16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] +16:24:05,128 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] +16:24:05,128 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. +16:24:05,128 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 +16:24:05,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] +16:24:05,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] +16:24:05,131 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" +16:24:05,131 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:24:05,131 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "%d{yyyy-MMM-dd HH:mm:ss.SSS} %-5level [%thread] %logger{15} - %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" +16:24:05,131 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log] +16:24:05,132 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:24:05,132 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3205d38d - Propagating INFO level on Logger[ROOT] onto the JUL framework +16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] +16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "WARN" substituted for "${cftlib_console_log_level}" +16:24:05,132 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN +16:24:05,132 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3205d38d - Propagating WARN level on Logger[ROOT] onto the JUL framework +16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] +16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@4f3d3dfd - End of configuration. +16:24:05,132 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@3e75924f - Registering current configuration as safe fallback point + + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + + :: Spring Boot :: (v3.3.5) + +2026-Feb-06 16:24:05.170 INFO [restartedMain] u.g.h.r.p.Application - The following 1 profile is active: "local" +2026-02-06T16:24:05.560 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'feignDecoder' with a different definition: replacing [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=camelCaseFeignConfiguration; factoryMethodName=feignDecoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/CamelCaseFeignConfiguration.class]] with [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=snakeCaseFeignConfiguration; factoryMethodName=feignDecoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/SnakeCaseFeignConfiguration.class]] +2026-02-06T16:24:05.560 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'feignEncoder' with a different definition: replacing [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=camelCaseFeignConfiguration; factoryMethodName=feignEncoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/CamelCaseFeignConfiguration.class]] with [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=snakeCaseFeignConfiguration; factoryMethodName=feignEncoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/SnakeCaseFeignConfiguration.class]] +2026-02-06T16:24:05.572 INFO [main] o.s.d.r.config.RepositoryConfigurationDelegate Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2026-02-06T16:24:05.760 INFO [main] o.s.d.r.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 161 ms. Found 4 JPA repository interfaces. +2026-02-06T16:24:06.679 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'idam-s2s-auth.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.680 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.authorisation.ServiceAuthorisationApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.680 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'idam-s2s-auth-health.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.680 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.authorisation.ServiceAuthorisationHealthApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.682 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'ccd-access-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.682 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseAccessApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'case-assignment-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseAssignmentApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'core-case-event-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseEventsApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.684 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'ccd-user-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.685 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseUserApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.686 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'core-case-data-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.687 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CoreCaseDataApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] +2026-02-06T16:24:06.996 INFO [main] o.springframework.cloud.context.scope.GenericScope BeanFactory id=f798b9b3-4f34-3690-880a-3cc82d444d43 +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-02-06T16:24:07.431 WARN [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker Bean 'org.zalando.problem.spring.web.autoconfigure.security.ProblemSecurityAutoConfiguration' of type [org.zalando.problem.spring.web.autoconfigure.security.ProblemSecurityAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [problemSecurityBeanPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-02-06T16:24:07.895 INFO [main] o.s.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port 8087 (http) +2026-02-06T16:24:07.942 INFO [main] o.s.b.w.s.c.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 3570 ms +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-Feb-06 16:24:08.144 WARN [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration$DeferringLoadBalancerInterceptorConfig' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration$DeferringLoadBalancerInterceptorConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [lbRestClientPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. +2026-Feb-06 16:24:08.148 WARN [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'deferringLoadBalancerInterceptor' of type [org.springframework.cloud.client.loadbalancer.DeferringLoadBalancerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [lbRestClientPostProcessor]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. +2026-02-06T16:24:08.422 WARN [main] org.hibernate.orm.deprecation HHH90000021: Encountered deprecated setting [hibernate.temp.use_jdbc_metadata_defaults], use [hibernate.boot.allow_jdbc_metadata_access] instead +2026-02-06T16:24:08.432 WARN [main] org.hibernate.orm.deprecation HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-02-06T16:24:08.550 INFO [main] u.g.h.r.c.d.configuration.ApplicationConfiguration HttpClient Configuration: +maxTotalHttpClient: 100, +maxSecondsIdleConnection: 120, +maxClientPerRoute: 20, +validateAfterInactivity: 2000, +connectionReadTimeout: 30000, +connectionTimeout: 10000 +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-02-06T16:24:08.643 INFO [main] o.s.boot.web.servlet.RegistrationBean Filter deRegisterServiceAuthFilter was not registered (disabled) +2026-02-06T16:24:08.660 DEBUG [main] o.s.web.filter.ServerHttpObservationFilter Filter 'webMvcObservationFilter' configured for use +2026-02-06T16:24:08.731 DEBUG [main] org.springframework.web.client.RestTemplate HTTP GET https://idam-web-public.aat.platform.hmcts.net/o/.well-known/openid-configuration +2026-02-06T16:24:08.747 DEBUG [main] org.springframework.web.client.RestTemplate Accept=[application/json, application/yaml, application/*+json] +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-02-06T16:24:08.783 DEBUG [main] org.springframework.web.client.RestTemplate Response 200 OK +2026-02-06T16:24:08.786 DEBUG [main] org.springframework.web.client.RestTemplate Reading to [java.util.Map] +2026-02-06T16:24:09.117 WARN [main] o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2026-02-06T16:24:09.252 WARN [main] o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2026-02-06T16:24:09.262 INFO [main] org.flywaydb.core.internal.license.VersionPrinter Flyway Community Edition 8.5.13 by Redgate +2026-02-06T16:24:09.263 INFO [main] org.flywaydb.core.internal.license.VersionPrinter See what's new here: https://flywaydb.org/documentation/learnmore/releaseNotes#8.5.13 +2026-02-06T16:24:09.263 INFO [main] org.flywaydb.core.internal.license.VersionPrinter +2026-02-06T16:24:09.277 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-2 - Starting... +2026-02-06T16:24:09.364 INFO [main] com.zaxxer.hikari.pool.HikariPool HikariPool-2 - Added connection org.postgresql.jdbc.PgConnection@7fe4091c +2026-02-06T16:24:09.368 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-2 - Start completed. +2026-02-06T16:24:09.395 INFO [main] o.f.core.internal.database.base.BaseDatabaseType Database: jdbc:postgresql://localhost:6432/cft_task_db (PostgreSQL 16.11) +2026-02-06T16:24:09.431 WARN [main] org.flywaydb.core.internal.database.base.Database Flyway upgrade recommended: PostgreSQL 16.11 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 14. +2026-02-06T16:24:09.431 DEBUG [main] o.s.s.c.a.a.c.AuthenticationConfiguration$DefaultPasswordEncoderAuthenticationManagerBuilder No authenticationProviders and no parentAuthenticationManager defined. Returning null. +2026-02-06T16:24:09.482 INFO [main] org.flywaydb.core.internal.command.DbValidate Successfully validated 41 migrations (execution time 00:00.038s) +2026-02-06T16:24:09.501 INFO [main] org.flywaydb.core.internal.command.DbMigrate Current version of schema "cft_task_db": 1.0.40 +2026-02-06T16:24:09.502 INFO [main] org.flywaydb.core.internal.command.DbMigrate Schema "cft_task_db" is up to date. No migration necessary. +2026-02-06T16:24:09.554 INFO [main] o.h.e.t.jta.platform.internal.JtaPlatformInitiator HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) +2026-02-06T16:24:09.580 INFO [main] org.hibernate.jpa.internal.util.LogHelper HHH000204: Processing PersistenceUnitInfo [name: cft_task_db] +2026-02-06T16:24:09.609 INFO [main] org.hibernate.Version HHH000412: Hibernate ORM core version 6.6.1.Final +2026-Feb-06 16:24:09.619 INFO [restartedMain] u.g.h.r.p.Application - Application running locally, turning off SSL verification so that tests accessing HTTPS resources can run on machines with ZScaler proxy +2026-02-06T16:24:09.639 INFO [main] o.hibernate.cache.internal.RegionFactoryInitiator HHH000026: Second-level cache disabled +2026-02-06T16:24:09.701 DEBUG [main] o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator Database -> + name : PostgreSQL + version : 16.11 (Debian 16.11-1.pgdg13+1) + major : 16 + minor : 11 +2026-02-06T16:24:09.701 DEBUG [main] o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator Driver -> + name : PostgreSQL JDBC Driver + version : 42.7.7 + major : 42 + minor : 7 +2026-02-06T16:24:09.701 DEBUG [main] o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator JDBC version : 4.2 +2026-02-06T16:24:09.708 WARN [main] org.flywaydb.core.internal.database.base.Database Flyway upgrade recommended: PostgreSQL 16.11 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 14. +2026-02-06T16:24:09.714 DEBUG [main] o.h.engine.jdbc.env.spi.IdentifierHelperBuilder JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case +2026-02-06T16:24:09.722 INFO [main] org.hibernate.orm.connections.pooling HHH10001005: Database info: + Database JDBC URL [Connecting through datasource 'HikariDataSource (HikariPool-2)'] + Database driver: undefined/unknown + Database version: 12.0 + Autocommit mode: undefined/unknown + Isolation level: undefined/unknown + Minimum pool size: undefined/unknown + Maximum pool size: undefined/unknown +2026-02-06T16:24:09.751 WARN [main] org.flywaydb.core.internal.command.DbMigrate outOfOrder mode is active. Migration of schema "public" may not be reproducible. +2026-02-06T16:24:09.762 WARN [main] org.flywaydb.core.internal.command.DbMigrate outOfOrder mode is active. Migration of schema "public" may not be reproducible. +2026-02-06T16:24:09.891 INFO [main] o.s.o.j.persistenceunit.SpringPersistenceUnitInfo No LoadTimeWeaver setup: ignoring JPA class transformer +2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/webjars/**'], Ant [pattern='/webjars/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs'], Ant [pattern='/v3/api-docs']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs/**'], Ant [pattern='/v3/api-docs/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/info'], Ant [pattern='/info']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.025 WARN [main] org.hibernate.orm.deprecation HHH90000021: Encountered deprecated setting [hibernate.temp.use_jdbc_metadata_defaults], use [hibernate.boot.allow_jdbc_metadata_access] instead +2026-02-06T16:24:10.044 WARN [main] org.hibernate.orm.deprecation HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) +2026-02-06T16:24:10.143 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, OAuth2AuthorizationRequestRedirectFilter, ServiceAuthFilter, BearerTokenAuthenticationFilter, AuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, OAuth2AuthorizationCodeGrantFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter +2026-02-06T16:24:10.168 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui.html'], Ant [pattern='/swagger-ui.html']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/swagger-ui.html'], Ant [pattern='/swagger-ui.html']] +2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']] +2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']] +2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']] +2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/health'], Ant [pattern='/health']] +2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']] +2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']] +2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/status/health'], Ant [pattern='/status/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/status/health'], Ant [pattern='/status/health']] +2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']] +2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/'], Ant [pattern='/']] +2026-02-06T16:24:10.303 INFO [main] org.flywaydb.core.internal.license.VersionPrinter Flyway Community Edition 8.5.13 by Redgate +2026-02-06T16:24:10.303 INFO [main] org.flywaydb.core.internal.license.VersionPrinter See what's new here: https://flywaydb.org/documentation/learnmore/releaseNotes#8.5.13 +2026-02-06T16:24:10.303 INFO [main] org.flywaydb.core.internal.license.VersionPrinter +2026-02-06T16:24:10.312 INFO [main] o.f.core.internal.resource.ResourceNameValidator 1 SQL migrations were detected but not run because they did not follow the filename convention. +2026-02-06T16:24:10.312 INFO [main] o.f.core.internal.resource.ResourceNameValidator If this is in error, enable debug logging or 'validateMigrationNaming' to fail fast and see a list of the invalid file names. +2026-02-06T16:24:10.317 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-4 - Starting... +2026-02-06T16:24:10.392 INFO [main] com.zaxxer.hikari.pool.HikariPool HikariPool-4 - Added connection org.postgresql.jdbc.PgConnection@32e5e2d5 +2026-02-06T16:24:10.394 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-4 - Start completed. +2026-02-06T16:24:10.406 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'userInfoCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.418 INFO [main] o.f.core.internal.database.base.BaseDatabaseType Database: jdbc:postgresql://localhost:6432/datastore (PostgreSQL 16.11) +2026-02-06T16:24:10.486 WARN [main] org.flywaydb.core.internal.database.base.Database Flyway upgrade recommended: PostgreSQL 16.11 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 14. +2026-02-06T16:24:10.542 INFO [main] org.flywaydb.core.internal.command.DbValidate Successfully validated 15 migrations (execution time 00:00.042s) +2026-02-06T16:24:10.585 INFO [main] org.flywaydb.core.internal.command.DbMigrate Current version of schema "public": 20250306.0000 +2026-02-06T16:24:10.585 WARN [main] org.flywaydb.core.internal.command.DbMigrate outOfOrder mode is active. Migration of schema "public" may not be reproducible. +2026-02-06T16:24:10.587 INFO [main] org.flywaydb.core.internal.command.DbMigrate Schema "public" is up to date. No migration necessary. +2026-02-06T16:24:10.745 INFO [main] org.hibernate.jpa.internal.util.LogHelper HHH000204: Processing PersistenceUnitInfo [name: default] +2026-02-06T16:24:10.764 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'usersByOrganisationInternal' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'challengeQuestions' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'caaAccessTokenCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'usersByOrganisationExternal' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'systemUserAccessTokenCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'caseRoles' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.774 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'userInfoCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.774 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'organisationAddressById' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.774 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'nocApproverAccessTokenCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:10.798 INFO [main] org.hibernate.Version HHH000412: Hibernate ORM core version 6.6.41.Final +2026-02-06T16:24:10.862 INFO [main] o.hibernate.cache.internal.RegionFactoryInitiator HHH000026: Second-level cache disabled +2026-02-06T16:24:10.922 INFO [main] uk.gov.hmcts.reform.ccd.documentam.Application Started Application in 7.694 seconds (process running for 8.212) +2026-02-06T16:24:10.942 WARN [main] org.hibernate.orm.deprecation HHH90000021: Encountered deprecated setting [hibernate.temp.use_jdbc_metadata_defaults], use [hibernate.boot.allow_jdbc_metadata_access] instead +**** Cftlib application dgDocassemblyApi is ready **** 8 remaining +2026-02-06T16:24:10.947 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' +2026-02-06T16:24:10.949 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' +2026-02-06T16:24:10.953 WARN [main] org.hibernate.orm.deprecation HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) +2026-02-06T16:24:10.966 INFO [main] org.hibernate.orm.connections.pooling HHH10001005: Database info: + Database JDBC URL [undefined/unknown] + Database driver: undefined/unknown + Database version: 12.0 + Autocommit mode: undefined/unknown + Isolation level: + Minimum pool size: undefined/unknown + Maximum pool size: undefined/unknown +2026-02-06T16:24:10.996 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/webjars/**'], Ant [pattern='/webjars/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs'], Ant [pattern='/v3/api-docs']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/info'], Ant [pattern='/info']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:11.017 INFO [main] u.g.h.reform.ccd.documentam.StartupConfigPrinter Stream configurations: +DOWNLOAD_ENABLED: false +UPLOAD_ENABLED: false +**** Cftlib application unknown is ready **** 7 remaining +2026-02-06T16:24:11.110 INFO [main] o.h.m.internal.EntityInstantiatorPojoStandard HHH000182: No default (no-argument) constructor for class: uk.gov.hmcts.reform.wataskmanagementapi.repository.TaskResourceCustomRepositoryImpl$TaskSearchResult (class must be instantiated by Interceptor) +**** Cftlib application ccdUserProfileApi is ready **** 6 remaining +**** Cftlib application aacManageCaseAssignment is ready **** 5 remaining +2026-02-06T16:24:11.206 ERROR [main] o.s.b.c.p.migrator.PropertiesMigrationListener +The use of configuration keys that are no longer supported was found in the environment: + +Property source 'Config resource 'class path resource [application.yaml]' via location 'optional:classpath:/'': + Key: spring.cloud.gateway.mvc.http-client.type + Line: 61 + Reason: none + +Property source 'applicationConfig: [classpath:/application.yaml]': + Key: spring.cloud.gateway.mvc.http-client.type + Line: 61 + Reason: none + + +Please refer to the release notes or reference guide for potential alternatives. + +2026-02-06T16:24:11.207 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' +2026-02-06T16:24:11.207 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' +2026-02-06T16:24:11.460 WARN [main] org.hibernate.mapping.RootClass HHH000038: Composite-id class does not override equals(): uk.gov.hmcts.ccd.data.caseaccess.CaseUserEntity$CasePrimaryKey +2026-02-06T16:24:11.460 WARN [main] org.hibernate.mapping.RootClass HHH000039: Composite-id class does not override hashCode(): uk.gov.hmcts.ccd.data.caseaccess.CaseUserEntity$CasePrimaryKey +2026-02-06T16:24:11.471 INFO [main] o.h.e.t.jta.platform.internal.JtaPlatformInitiator HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) +2026-02-06T16:24:11.478 INFO [main] o.s.orm.jpa.LocalContainerEntityManagerFactoryBean Initialized JPA EntityManagerFactory for persistence unit 'cft_task_db' +2026-02-06T16:24:11.672 INFO [main] u.g.h.r.r.config.EnvironmentConfiguration ras.environment used value: pr +2026-02-06T16:24:11.859 INFO [main] com.launchdarkly.sdk.server.LDClient.DataSource Enabling streaming API +2026-02-06T16:24:11.863 INFO [main] com.launchdarkly.sdk.server.LDClient Waiting up to 5000 milliseconds for LaunchDarkly client to start... +2026-02-06T16:24:11.896 INFO [main] o.h.e.t.jta.platform.internal.JtaPlatformInitiator HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) +2026-02-06T16:24:12.114 INFO [LaunchDarkly-streaming] com.launchdarkly.sdk.server.LDClient.DataSource Initialized LaunchDarkly client. +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-02-06T16:24:12.441 INFO [main] o.s.data.jpa.repository.query.QueryEnhancerFactory Hibernate is in classpath; If applicable, HQL parser will be used. +2026-02-06T16:24:12.455 INFO [main] u.g.hmcts.reform.roleassignment.util.JacksonUtils Loaded 217 roles from drool +2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 +2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 +2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 +2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 +2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 30000 +2026-02-06T16:24:12.477 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration readTimeout: 30000 +2026-02-06T16:24:12.501 INFO [main] uk.gov.hmcts.ccd.config.CacheConfiguration Cache Configuration Parameters: +defaultMaxIdle (Default Cache Max Idle): 14400, +defaultCacheTtl (Default Cache TTL): 30, +userCacheTtl (User Cache TTL): 1800, +userRoleCacheTtl (User Role Cache TTL): 7200, +jurisdictionCacheTtl (Jurisdiction Cache TTL): 30, +systemUserTokenCacheTTLSecs (System User Token Cache TTL): 14400 +2026-02-06T16:24:12.676 WARN [main] o.d.compiler.kie.builder.impl.ClasspathKieProject Unable to find pom.properties in /home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/am-role-assignment-service/0.19.2017/3055b3db4a44bda3178f3aa0c86c49b30640171c/am-role-assignment-service-0.19.2017.jar +2026-02-06T16:24:12.676 WARN [main] o.d.compiler.kie.builder.impl.ClasspathKieProject Unable to load pom.properties from/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/am-role-assignment-service/0.19.2017/3055b3db4a44bda3178f3aa0c86c49b30640171c/am-role-assignment-service-0.19.2017.jar +2026-02-06T16:24:12.676 WARN [main] o.d.compiler.kie.builder.impl.ClasspathKieProject Cannot find maven pom properties for this project. Using the container's default ReleaseId +2026-02-06T16:24:12.753 WARN [main] o.drools.compiler.kie.builder.impl.KieBuilderImpl File 'validationrules/prm/prm-role-mapping-validation.drl' is in folder 'validationrules/prm' but declares package 'validationrules.core'. It is advised to have a correspondance between package and folder names. +2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 +2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 +2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 +2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 +2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 20000 +2026-02-06T16:24:12.759 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration definitionStoreConnectionTimeout: 20000 +2026-02-06T16:24:12.778 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 +2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 +2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 +2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 +2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 5000 +2026-02-06T16:24:12.784 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 +2026-02-06T16:24:12.784 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 +2026-02-06T16:24:12.784 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 +2026-02-06T16:24:12.785 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 +2026-02-06T16:24:12.785 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 5000 +2026-02-06T16:24:12.911 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 +2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 +2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 +2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 +2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 30000 +2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration readTimeout: 30000 +2026-02-06T16:24:13.114 DEBUG [main] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver ControllerAdvice beans: 3 @ExceptionHandler, 1 ResponseBodyAdvice +2026-02-06T16:24:13.121 INFO [main] o.z.p.s.w.a.s.ProblemSecurityBeanPostProcessor Register HttpSecurity's exceptionHandling +2026-02-06T16:24:13.421 DEBUG [main] o.s.w.s.m.m.a.RequestMappingHandlerMapping 24 mappings in 'requestMappingHandlerMapping' +2026-02-06T16:24:13.466 DEBUG [main] o.s.web.servlet.handler.SimpleUrlHandlerMapping Patterns [/webjars/**, /**, /swagger-ui*/*swagger-initializer.js, /swagger-ui*/**] in 'resourceHandlerMapping' +2026-02-06T16:24:13.492 INFO [main] o.s.b.actuate.endpoint.web.EndpointLinksResolver Exposing 2 endpoints beneath base path '' +2026-02-06T16:24:13.495 INFO [main] io.searchbox.client.AbstractJestClient Setting server pool to a list of 1 servers: [http://localhost:9200] +2026-02-06T16:24:13.495 INFO [main] io.searchbox.client.JestClientFactory Using multi thread/connection supporting pooling connection manager +2026-02-06T16:24:13.510 INFO [main] io.searchbox.client.JestClientFactory Using custom GSON instance +2026-02-06T16:24:13.510 INFO [main] io.searchbox.client.JestClientFactory Node Discovery disabled... +2026-02-06T16:24:13.510 INFO [main] io.searchbox.client.JestClientFactory Idle connection reaping enabled... +2026-02-06T16:24:13.528 INFO [main] o.z.p.s.w.a.s.ProblemSecurityBeanPostProcessor Register HttpSecurity's exceptionHandling +2026-02-06T16:24:13.561 INFO [main] o.z.p.s.w.a.security.ProblemHttpConfigurer Register HttpSecurity's exceptionHandling +2026-02-06T16:24:13.566 DEBUG [main] org.springframework.web.client.RestTemplate HTTP GET https://idam-web-public.aat.platform.hmcts.net/o/.well-known/openid-configuration +2026-02-06T16:24:13.567 DEBUG [main] org.springframework.web.client.RestTemplate Accept=[application/json, application/yaml, application/*+json] +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-Feb-06 16:24:14.138 WARN [restartedMain] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2026-02-06T16:24:14.544 WARN [main] org.drools.mvel.MVELConstraint $roleName is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : get($roleName, $roleCategory, $roleType) != null +2026-02-06T16:24:14.547 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : attributesMatch($ra.attributes) +2026-02-06T16:24:14.550 WARN [main] org.drools.mvel.MVELConstraint $c is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $c.securityClassification != null +2026-02-06T16:24:14.553 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $ra.attributes["requestedRole"] != null +2026-02-06T16:24:14.554 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $ra.roleName == "specific-access-admin") +2026-02-06T16:24:14.569 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $ra.roleName == "specific-access-admin") +2026-Feb-06 16:24:15.257 INFO [restartedMain] u.g.h.r.p.Application - Started Application in 11.914 seconds (process running for 12.547) +**** Cftlib application prl-cos-api is ready **** 4 remaining +2026-Feb-06 16:24:15.264 INFO [scheduling-1] u.g.h.r.p.s.SystemUserService - Evicting system user cron cache +2026-02-06T16:24:16.674 DEBUG [main] org.springframework.web.client.RestTemplate Response 200 OK +2026-02-06T16:24:16.674 DEBUG [main] org.springframework.web.client.RestTemplate Reading to [java.util.Map] +2026-02-06T16:24:16.685 DEBUG [main] org.springframework.web.client.RestTemplate HTTP GET https://idam-web-public.aat.platform.hmcts.net/o/jwks +2026-02-06T16:24:16.685 DEBUG [main] org.springframework.web.client.RestTemplate Accept=[text/plain, application/json, application/yaml, application/*+json, */*] +2026-02-06T16:24:16.695 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/**'], Ant [pattern='/health/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/am/role-assignments/fetchFlagStatus'], Ant [pattern='/am/role-assignments/fetchFlagStatus']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger'], Ant [pattern='/swagger']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui.html'], Ant [pattern='/swagger-ui.html']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs/**'], Ant [pattern='/v3/api-docs/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/search/**'], Ant [pattern='/search/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/csrf'], Ant [pattern='/csrf']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/error'], Ant [pattern='/error']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/status/health'], Ant [pattern='/status/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/welcome'], Ant [pattern='/welcome']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:16.974 DEBUG [main] org.springframework.web.client.RestTemplate Response 200 OK +2026-02-06T16:24:16.975 DEBUG [main] org.springframework.web.client.RestTemplate Reading to [java.lang.String] as "application/json" +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/index.html'], Ant [pattern='/swagger-ui/index.html']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:17.122 DEBUG [main] o.s.w.s.m.m.a.RequestMappingHandlerAdapter ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice +2026-02-06T16:24:17.261 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'task_types_dmn' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:17.261 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'task_types' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:17.261 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'calendar_cache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:18.325 INFO [main] org.springframework.cloud.commons.util.InetUtils Cannot determine local hostname +**** Cftlib application ccdDataStoreApi is ready **** 3 remaining +2026-02-06T16:24:18.378 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' +2026-02-06T16:24:18.378 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' +2026-02-06T16:24:18.390 INFO [main] o.s.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port 8087 (http) with context path '/' +2026-02-06T16:24:18.530 INFO [main] u.g.h.r.roleassignment.RoleAssignmentApplication Started RoleAssignmentApplication in 15.303 seconds (process running for 15.82) +2026-02-06T16:24:18.570 INFO [main] u.gov.hmcts.reform.wataskmanagementapi.Application Started Application in 15.303 seconds (process running for 15.86) +**** Cftlib application waTaskManagementApi is ready **** 2 remaining +2026-02-06T16:24:18.580 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_1_1 is set to: true +2026-02-06T16:24:18.582 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_jrd_1_0 is set to: true +2026-02-06T16:24:18.584 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag ccd_bypass_1_0 is set to: true +2026-02-06T16:24:18.585 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_specific_1_0 is set to: true +2026-02-06T16:24:18.586 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_challenged_1_0 is set to: true +2026-02-06T16:24:18.588 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag wa_bypass_1_0 is set to: true +2026-02-06T16:24:18.589 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag sscs_wa_1_0 is set to: true +2026-02-06T16:24:18.591 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag sscs_challenged_1_0 is set to: true +2026-02-06T16:24:18.592 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag sscs_case_allocator_1_0 is set to: true +2026-02-06T16:24:18.594 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag ga_prm_1_0 is set to: true +2026-02-06T16:24:18.595 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag disposer_1_0 is set to: true +2026-02-06T16:24:18.597 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag all_wa_services_case_allocator_1_0 is set to: true +2026-02-06T16:24:18.598 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' +**** Cftlib application unknown is ready **** 1 remaining +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/webjars/**'], Ant [pattern='/webjars/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs'], Ant [pattern='/v3/api-docs']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs/**'], Ant [pattern='/v3/api-docs/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v2/**'], Ant [pattern='/v2/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/api/testing-support/**'], Ant [pattern='/api/testing-support/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. +2026-02-06T16:24:18.825 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'userInfoCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. +2026-02-06T16:24:20.360 INFO [main] u.g.h.ccd.definition.store.CaseDataAPIApplication Started CaseDataAPIApplication in 17.129 seconds (process running for 17.65) +2026-02-06T16:24:20.364 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' +2026-02-06T16:24:20.364 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' +**** Cftlib application ccdDefinitionStoreApi is ready **** 0 remaining +2026-02-06T16:24:20.466 INFO [http-nio-4451-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet' +2026-02-06T16:24:20.468 INFO [http-nio-4451-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 2 ms +2026-02-06T16:24:20.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.ElasticsearchIndexController Creating Elasticsearch index for Global search. +2026-02-06T16:24:20.610 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient alias global_search exists: true +2026-02-06T16:24:20.611 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of most recent index for alias global_search +2026-02-06T16:24:20.614 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient found following indexes for alias global_search: [global_search-000001] +2026-02-06T16:24:20.615 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of index global_search-000001 +2026-02-06T16:24:20.650 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient mapping upserted: true +2026-02-06T16:24:20.650 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient Closing the ES REST client +2026-02-06T16:24:21.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.service.ProcessUploadServiceImpl Importing Definition file... +2026-02-06T16:24:23.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: Jurisdiction PRIVATELAW : OK +2026-02-06T16:24:23.549 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.ListFieldTypeParser List types parsing: OK: 855 types parsed +2026-02-06T16:24:48.434 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/query method: POST +2026-02-06T16:24:48.443 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 0 +2026-02-06T16:24:48.679 INFO [*** ***CFT lib***] u.g.h.r.r.c.endpoints.QueryAssignmentController Inside Single query request method +2026-02-06T16:24:48.893 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=88604f0d-0d34-4209-ac0b-866303d9046e. Roles=[jrd-admin, jrd-system-user, idam-service-account, cwd-system-user]. +2026-02-06T16:24:48.893 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:24:48.890779933,operationType:Search assignments,assignmentSize:219,invokingService:xui_webapp,endpointCalled:/am/role-assignments/query,operationalOutcome:200,authenticatedUserId:88604f0d-0d34-4209-ac0b-866303d9046e,responseTime:146 +2026-02-06T16:25:42.184 INFO [validate-exec-2] u.g.h.c.d.s.excel.parser.ComplexFieldTypeParser Validation has been completed successfully! +2026-02-06T16:25:42.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.ComplexFieldTypeParser Complex types parsing: OK: 2470 types parsed, including 242 complex +2026-02-06T16:25:42.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldTypeParser Case field types parsing: OK: 2257 types parsed +2026-02-06T16:25:44.843 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: Field types: OK: 1483 field types imported +2026-02-06T16:25:44.872 WARN [*** ccdDefinitionStoreApi] org.hibernate.engine.spi.ActionQueue The batch containing 7146 statements could not be sorted. This might indicate a circular entity relationship. +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[APPLICANTSOLICITOR]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR1]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR2]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR3]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR4]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR5]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR1]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR2]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR3]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR4]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR5]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401APPLICANTSOLICITOR]': OK +2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401RESPONDENTSOLICITOR]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[CREATOR]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER1]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER2]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER3]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER4]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER5]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER1]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER2]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER3]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER4]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER5]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401APPLICANTBARRISTER]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401RESPONDENTBARRISTER]': OK +2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': OK: 26 case roles parsed +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndCafcassOfficers: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field testCaseName: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteHeaderCaseNameText: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteHeaderCaseName: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field subject: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNote: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNotes: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteLink: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteTable: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeLegalRepHeader: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeLegalRepAndPartiesList: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeLegalRepInfo: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmYesNo: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmDomesticAbuseYesNo: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmChildAbductionYesNo: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmChildAbuseYesNo: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmHint: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmLabel: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmSubstanceAbuseYesNo: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmSubstanceAbuseDetails: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmOtherConcerns: OK +2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmOtherConcernsDetails: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationOfHarmOrdersLabel: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationOfHarmOrdersLabelDetail: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestation: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationDateIssued: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationEndDate: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationCurrent: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationCourtName: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationCaseNumber: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationDocument: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupation: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationDateIssued: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationEndDate: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationCurrent: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationCourtName: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationCaseNumber: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationDocument: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtection: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionDateIssued: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionEndDate: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionCurrent: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionCourtName: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionCaseNumber: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionDocument: OK +2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestraining: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingDateIssued: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingEndDate: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingCurrent: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingCourtName: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingCaseNumber: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingDocument: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctive: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveDateIssued: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveEndDate: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveCurrent: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveCourtName: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveCaseNumber: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveDocument: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlace: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceDateIssued: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceEndDate: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceCurrent: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceCourtName: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceCaseNumber: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceDocument: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseBehavioursLabel: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseBehavioursLabel: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductionLabel: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field othersConcernsLabel: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseBehavioursSubLabel: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseBehavioursSubLabel: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticBehaviours: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseBehavioursDocmosis: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuses: OK +2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newChildAbductionReasons: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newPreviousAbductionThreats: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newPreviousAbductionThreatsDetails: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newChildrenLocationNow: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionPassportOfficeNotified: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionPreviousPoliceInvolvement: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionPreviousPoliceInvolvementDetails: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionChildHasPassport: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmOtherConcernsCourtActions: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmChildContactLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAgreeChildUnsupervisedTime: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAgreeChildSupervisedTime: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAgreeChildOtherContact: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPhysicalAbuseLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPhysicalAbuseSubLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPhysicalAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPsychologicalAbuseLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPsychologicalAbuseSubLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPsychologicalAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childSexualAbuseLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childSexualAbuseSubLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childSexualAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childEmotionalAbuseLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childEmotionalAbuseSubLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childEmotionalAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childFinancialAbuseLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childFinancialAbuseSubLabel: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childFinancialAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskPhysicalAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskPsychologicalAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskSexualAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskEmotionalAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskFinancialAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskPhysicalAbuse: OK +2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskPsychologicalAbuse: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskSexualAbuse: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskEmotionalAbuse: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskFinancialAbuse: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudeLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeInfo: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSpecificJudgeOrLegalAdviserNeeded: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isJudgeOrLegalAdviser: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNameAndEmail: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalAdviserList: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tierOfJudiciary: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tierOfJudge: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ApplicationPaymentLinkLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabCaseNameLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtDetails: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabHearingUrgencyLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingUrgencyTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabApplicantDetailsLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabRespondentDetailsLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabDeclarationLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field declarationTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildRevisedLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabTypeOfApplicationLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplicationTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401TypeOfApplicationTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAllegationsOfHarmLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAllegationsOfHarmRevisedLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOverviewTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedOverviewTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabMiamLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPolicyUpgradeTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPolicyUpgradeExemptionsTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherProceedingsLabel: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsDetailsTable: OK +2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabInternationalElementLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internationalElementTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAttendingTheHearingLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field attendingTheHearingTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabLitigationCapacityLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabWelshLanguageRequirementsLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirementsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAllegationsOfHarmDetailsLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOrdersTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedOrdersTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmDomesticAbuseTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildAbductionTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedChildAbductionTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedOtherConcernsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherPeopleInTheCaseLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherPeopleRevisedInTheCaseLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedChildContactTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeopleInTheCaseTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeopleInTheCaseRevisedTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherChildNotInTheCaseLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherChildNotInTheCaseTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildAndApplicantsRelationLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantsRelationTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildAndRespondentRelationLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelationsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildAndOtherPeopleRelationLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelationsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsRevisedTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsRevisedExtraTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsExtraTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantFamilyTableLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantFamilyTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childInfoTableLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childInfoTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childToBeProtectedTableLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childToBeProtectedTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ApplicantTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401SolicitorLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401SolicitorDetailsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeDetailsTable: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeDetailsTableLabel: OK +2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBehaviourTableLabel: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBehaviourTable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withoutNoticeOrderTableLabel: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withoutNoticeOrderTable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401RespondentTable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field relationshipToRespondentTableLabel: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field relationshipToRespondentTable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401OtherProceedingsDetailsTable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isHomeEntered: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ChildDetailsTableLabel: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ChildDetailsTable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fL401ApplicationTabDeclarationLabel: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFeesDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedDATable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedCATable: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewByDate: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awaitingInformationReasonList: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenAwpPayments: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfRequestedForAdditionalApplicationsFlag: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedBarrister: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field coverLetter: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field coverPageAddress: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field coverPagePartyName: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScanCaseReference: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field scannedDocuments: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field evidenceHandled: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScanEnvelopes: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildConfidentiality: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildInternationalElements: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildReasonableAdjustments: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildTypeOfOrder: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildHearingWithoutNotice: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildOtherProceedings: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildReturnUrl: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildMaim: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDocumentsCopy: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildHearingUrgency: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildChildDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildApplicantDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildRespondentDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildOtherChildrenDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildOtherPersonsDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsMiam: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantConsentMiam: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPreviousAttendanceChecklist1: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamOtherGroundsChecklist1: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paymentReferenceNumber: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildSafetyConcerns: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildScreeningQuestions: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildHelpWithFeesDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildConsentOrderDetails: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildStatementOfTruth: OK +2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildChildPostCode: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFeesReferenceNumber: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noOfDaysRemainingToSubmitCase: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantPcqId: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1ADocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1AWelshDocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1ADraftDocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1AWelshDraftDocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8Document: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8WelshDocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8WelshDraftDocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8DraftDocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8ArchivedDocument: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassDateTime: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor1ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor2ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor3ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor4ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor5ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty1ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty2ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty3ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty4ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty5ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor1ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor2ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor3ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor4ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor5ExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field flagLauncherExternal: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantSolicitorExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentSolicitorExternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister1InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister2InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister3InternalFlags: OK +2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister4InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister5InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister1ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister2ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister3ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister4ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister5ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor1InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor2InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor3InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor4InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor5InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty1InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty2InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty3InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty4InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty5InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor1InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor2InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor3InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor4InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor5InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister1InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister2InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister3InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister4InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister5InternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister1ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister2ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister3ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister4ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister5ExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field flagLauncherInternal: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCaseFlagsTaskCreated: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantInternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantBarristerInternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantBarristerExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantSolicitorInternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentInternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentBarristerInternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentBarristerExternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentSolicitorInternalFlags: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedReviewLangAndSmReq: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isReviewLangAndSmReqReviewed: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createBundleTransitionDetails: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bundleInformation: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createBundleSubmitLabel: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bundleCreationSubmittedWhatHappensNext: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bundleCreationSubmittedWhatHappensNextLabel: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtName: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtSeal: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskList: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListLabel: OK +2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListReturn: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListReturnLabel: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseHistory: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantName: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childName: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentName: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelPleaseUploadDocuments: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelDocumentsRequired: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelContactOrResidenceOrder: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelC8FormForConfidentiality: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelUploadOtherDocuments: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field contactOrderDocumentsUploaded: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8FormDocumentsUploaded: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocumentsUploaded: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelLanguageRequirements: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isWelshNeeded: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshNeeds: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401WelshNeeds: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isInterpreterNeeded: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field interpreterNeeds: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelAccessibility: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isDisabilityPresent: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelAdjustmentsRequired: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field adjustmentsRequired: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelSpecialArrangements: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelSpecialArrangementsDescription: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSpecialArrangementsRequired: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelSpecialArrangementsRequired: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangementsRequired: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelIntermediaryDescription: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isIntermediaryNeeded: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsForIntermediary: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersApplyingFor: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfChildArrangementsOrder: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraConsentOrderNotification: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field natureOfOrderLabel: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field natureOfOrder: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraWhyMakingApplication: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraWhyMakingApplication2: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationPermissionRequired: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationPermissionRequiredReason: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraApplicationDetails: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationDetails: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuse: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbduction: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuse: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field drugsAlcoholSubstanceAbuse: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safetyWelfareConcerns: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraChildAbduction: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAtRiskOfAbduction: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field policeNotified: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childHasPassport: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductedBefore: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childHasMultiplePassports: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPassportPossession: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPassportPossessionOtherDetails: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductionDetails: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPoliceInvolved: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPoliceInvolvedDetails: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAtRiskOfAbductionReason: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childWhereabouts: OK +2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraChildAbuse: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexually: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyDetails: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyStartDate: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyOngoing: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyHelpSought: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysically: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyDetails: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyStartDate: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyOngoing: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyHelpSought: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinancially: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyDetails: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyStartDate: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyOngoing: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyHelpSought: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomestic: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticDetails: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticStartDate: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticOngoing: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticHelpSought: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuse: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseDetails: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseStartDate: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseOngoing: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseHelpSought: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherSafetyOrWelfareConcerns: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherSafetyOrWelfareConcernsDetails: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelWhereChildrenLive: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenAddress: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPassportDetails: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelChildren: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field children: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelChildrenAdditionalQuestions: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isChildrenKnownToAuthority: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndLocalAuthority: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isChildrenUnderChildProtection: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isChildrenWithSameParents: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentsAndTheirChildren: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentalResponsibilities: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whoChildrenLiveWith: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAddressAndAdultsLivingWith: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelOtherCourtCases: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isExistingProceedings: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenInProceeding: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field existingProceedings: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field existingProceedingsWithDoc: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelTheApplicants: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicants: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplication: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantsFL401: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelTheRespondents: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondents: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentsFL401: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelOthersToNotify: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field othersToNotify: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPartyInTheCaseRevised: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelOtherChildren: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherChildren: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantAttendedMIAMLabel: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantAttendedMiam: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field claimingExemptionMIAMLabel: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field claimingExemptionMiam: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsLabel: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorMIAMLabel: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorMiam: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsSelectAll: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsChecklist: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDomesticViolenceLabel: OK +2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDomesticViolenceSelectAll: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDomesticViolenceChecklist: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamChildProtectionConcernLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamChildProtectionConcernList: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamUrgencyReasonLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamUrgencyReasonSelectAll: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamUrgencyReasonChecklist: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPreviousAttendanceLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPreviousAttendanceChecklist: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamOtherGroundsLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamOtherGroundsChecklist: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mediatorRegistrationNumber: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorServiceName: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soleTraderName: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageMessage: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationDocumentUpload: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageLabel1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mediatorRegistrationNumber1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorServiceName1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soleTraderName1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageMessage1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationDocumentUpload1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field consentOrder: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftConsentOrderFile: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCaseUrgent: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseUrgencyTimeAndReason: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field effortsMadeWithRespondents: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouNeedAWithoutNoticeHearing: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsForApplicationWithoutNotice: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouRequireAHearingWithReducedNotice: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field setOutReasonsBelow: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field areRespondentsAwareOfProceedings: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFeesNotAvailable: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantCaseName: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantOrRespondentCaseName: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseTypeOfApplicationLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field CaseAccessCategory: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseFromCourtNav: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedCaseTypeID: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseTypeOfApplication: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ConfidentialityDisclaimerLabel1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field state: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityStatementDisclaimer: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100ConfidentialityDisclaimerLabel1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100SelectFamilyCourtLabel1: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100ConfidentialityStatementDisclaimer: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityFactors: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityReferrals: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityOtherFactors: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityOtherFactorsDetails: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field habitualResidentInOtherState: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field jurisdictionIssue: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestToForeignAuthority: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field habitualResidentInOtherStateGiveReason: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field jurisdictionIssueGiveReason: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestToForeignAuthorityGiveReason: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirement: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirementApplication: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field languageRequirementApplicationNeedWelsh: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirementApplicationNeedEnglish: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsAdditionalQuestionsLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenKnownToLocalAuthority: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenKnownToLocalAuthorityTextArea: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenSubjectOfChildProtectionPlan: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmHint: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmYesNo: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmLabel: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmDomesticAbuseYesNo: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildAbductionYesNo: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildAbuseYesNo: OK +2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmSubstanceAbuseYesNo: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsYesNo: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field physicalAbuseVictim: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emotionalAbuseVictim: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field psychologicalAbuseVictim: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sexualAbuseVictim: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field financialAbuseVictim: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductionReasons: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previousAbductionThreats: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previousAbductionThreatsDetails: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenLocationNow: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPassportOfficeNotified: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionChildHasPassport: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionChildPassportPosession: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionChildPassportPosessionOtherDetail: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPreviousPoliceInvolvement: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPreviousPoliceInvolvementDetails: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionOtherSafetyConcerns: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionOtherSafetyConcernsDetails: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionCourtStepsRequested: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field behaviours: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmOrdersLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmOrdersLabelDetail: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestation: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupation: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtection: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestraining: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctive: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlace: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationDateIssued: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationEndDate: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationCurrent: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationCourtName: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationDocument: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationDateIssued: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationEndDate: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationCurrent: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationCourtName: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationDocument: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionDateIssued: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionEndDate: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionCurrent: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionCourtName: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionDocument: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingDateIssued: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingEndDate: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingCurrent: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingCourtName: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingDocument: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveDateIssued: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveEndDate: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveCurrent: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveCourtName: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveDocument: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceDateIssued: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceEndDate: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceCurrent: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceCourtName: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceDocument: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcerns: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsDetails: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsCourtActions: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildContactLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field agreeChildUnsupervisedTime: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field agreeChildSupervisedTime: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field agreeChildOtherContact: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previousOrOngoingProceedingsForChildren: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field downloadApplicationLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkToDownloadApplicationLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100draftOrderDocLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401draftOrderDocLabel: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderDoc: OK +2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field id: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDeclaration: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayAgreeStmtLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorName: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayAgreeSignStmtLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field payAgreeStatement: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAgreeStatement: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayNextPage: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayNextPageDesc: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayFee: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field feeAmount: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplication: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplicationLinkLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100submitAndPayDownloadApplicationLinkLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFees: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field viewPDFlinkLabelText: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field viewPDFlinkLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplicationLink: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceRequest: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paymentCallbackServiceRequestUpdate: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paymentServiceRequestReferenceNumber: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentRelationObject: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentRelationDateInfoObject: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentRelationOptions: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectReasonLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returningAnApplicationLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returningAnApplicationText: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectReason: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401RejectReason: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returnMessageLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returnMessage: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familymanCaseNumber: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localCourtHint: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localCourtAdmin: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field userInfo: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseworkerEmailAddress: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantSolicitorEmailAddress: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalDocument: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field issueDate: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantsConfidentialDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenConfidentialDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentConfidentialDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ChildrenConfidentialDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field TestField: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBehaviourData: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplicationOrders: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplicationLinkToCA: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantFamilyDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantChildDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderWithoutGivingNoticeToRespondent: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForOrderWithoutGivingNotice: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bailDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anyOtherDtailsForWithoutNoticeOrder: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field home: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateSubmitted: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo1: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo2: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo3: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo4: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo5: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo6: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo7: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo8: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401OtherProceedingDetails: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityDisclaimer: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401StmtOfTruth: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ConfidentialityCheck: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtEmailAddress: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingUrgencyLabel: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isNotificationSent: OK +2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCourtEmailFound: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSolicitorName: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isDocumentGenerated: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSolicitorOrgName: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitCountyCourtSelectionLabel: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitCountyCourtSelection: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantOrganisationPolicy: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantAge: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialCourtName: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseOrigin: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavApproved: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hasDraftOrder: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field numberOfAttachments: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSubmittedTimeStamp: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateSubmittedAndTime: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseCreatedBy: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsApplyingFor: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfC2Application: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicantsList: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field temporaryOtherApplicationsBundle: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field temporaryC2Document: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseFlags: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadC2Link: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsBundle: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCafcass: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createdDate: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field lastModifiedDate: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassUploadedDocs: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isAddCaseNumberAdded: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationFeesToPay: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationFeesToPayText: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsHelpWithFees: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsHelpWithFeesNumber: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfRequestedForAdditionalApplications: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field representedPartyType: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListVersion: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isInHearingState: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isInvokedFromTask: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isNonWorkAllocationEnabledCourtSelected: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nextHearingDate: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantContactInstructions: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field loggedInUserRole: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNoteId: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field TTL: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field componentLauncher: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orders: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersSubmittedWithApplication: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field approvedOrders: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field standardDirectionsOrder: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transcriptsOfJudgements: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field magistratesFactsAndReasons: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNotesFromHearing: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field preliminaryDocuments: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field positionStatements: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fm5Statements: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applications: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantDocuments: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantApplication: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantC1AApplication: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantC1AResponse: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationsWithinProceedings: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationsWithinProceedingsRes: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field MIAMCertificate: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field prevOrdersSubmittedWithAppl: OK +2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDocuments: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentApplication: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersFromOtherProceedings: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentC1AApplication: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentC1AResponse: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationsFromOtherProceedings: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field witnessStatementAndEvidence: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantStatements: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentStatements: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherWitnessStatements: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pathfinder: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localAuthorityOtherDoc: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field CAFCASSReportAndGuardian: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childImpactReport1: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childImpactReport2: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingLetter: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field section7Report: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field 16aRiskAssessment: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field guardianReport: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialGuardianshipReport: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocs: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localAuthorityDocuments: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field section37Report: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sec37Report: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field expertReport: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field medicalReports: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field DNAReports_expertReport: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field resultsOfHairStrandBloodTests: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field policeDisclosures: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field medicalRecords: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field drugAndAlcoholTest(toxicology): OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field policeReport: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondentToAndFromCourt: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailsToCourt: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field publicFundingCertificates: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noticesOfActingDischarge: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestForFASFormsToChange: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field witnessAvailability: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field lettersOfComplaint: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field SPIPReferralRequests: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeOfficeDWPResponses: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internalCorrespondence: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocments: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field impInfoAboutAddrContact: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field privacyNotice: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialMeasures: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field attendingTheHearing: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noticeOfHearing: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtBundle: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSummary: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidential: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anyOtherDoc: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrders: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8ArchivedDocuments: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseInvites: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseLinks: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseLinksTabTitle: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field maintainCaseLinksFlag: OK +2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseLinksFlag: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field LinkedCasesComponentLauncher: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newChildDetails: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field buffChildAndApplicantRelations: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantRelations: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantRelationsLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantRelationsSubLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field buffChildAndOtherPeopleRelations: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelations: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelationsLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelationsSubLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field buffChildAndRespondentRelations: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelations: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelationsLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelationsSubLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenResponseC7DocumentList: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenUploadedDocumentList: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeopleKnowYourContactDetails: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentiality: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityList: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recordChildrenLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closeCaseLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheDecisionAboutAllChildren: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childOptionsForFinalDecision: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addDecisionLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateFinalDecisionWasMade: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalOutcomeForChildren: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalOutComeLabel: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalCaseClosedDate: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseClosed: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedRespondentPack: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unservedCitizenRespondentPack: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedApplicantPack: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedOthersPack: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedLaPack: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialCheckFailed: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationServedYesNo: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectionReason: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedCafcassCymruPack: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isC8CheckApproved: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityCheckWarningText: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAC8EngDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAC8WelDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respBC8EngDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respBC8WelDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respCC8EngDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respCC8WelDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDC8EngDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDC8WelDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respEC8EngDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respEC8WelDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appAC8RefugeDocument: OK +2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appBC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appCC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appDC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appEC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respBC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respCC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respEC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherAC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherBC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherCC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherEC8RefugeDocument: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtId: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForAmendCourtDetails: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cantFindCourtCheck: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anotherCourt: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transferredCourtFrom: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForTransferToAnotherCourt: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForTransferToAnotherCourtDa: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anotherReasonToTransferDetails: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transferCourtWarning: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtDetailsLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401Doc1: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401Doc2: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCourtNavCase: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavUploadedDocs: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deleteApplicationNote: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deletionConsent: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dfjArea: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field swanseaDFJCourt: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field humbersideDFJCourt: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field essexAndSuffolkDFJCourt: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field wolverhamptonDFJCourt: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isEngDocGen: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isWelshDocGen: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field accessCodeNotifications: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderOptions: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderCollection: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c43Label: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c43LabelBold: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderCollectionId: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassOrCafcassCymruLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioSafeGuardingOnIssueLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassSafeguardingIssue: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioSafeGuardingOnIssueCymruLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassCymruSafeguardingIssue: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDirectionsCaseNeedsLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPreamblesList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingsAndNextStepsList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassOrCymruList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCourtList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioOtherList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFurtherList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioListLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCourtLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationCourtDynamicList: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationReason: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationSpecificReason: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingsAndNextStepsLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCaseReviewLabel: OK +2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCaseReviewAtSecondGateKeeping: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationDecisionLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioNextStepsAllocationTo: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocateNamedJudgeLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioApplicationIsReservedTo: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingPermissionLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingOn: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingTimeEstimate: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingCourtDynamicList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingBeforeAList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingPlaceLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingDate: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentBecauseLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentCheckList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFirstHearingUrgencyDetails: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentCourtConsider: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentTimeShortenedLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentTimeShortened: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentDayShortened: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentMustBeServedBy: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentByWayOf: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedCourtLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedCheckList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgencyRefusedDetails: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeFirstHearingLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeApprovedApplicationLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeFirstHearingCheckList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeFirstHearingDetails: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeNotApprovedLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedCheckList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedDetails: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraHearingDisputeLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraStartDateTime: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraCourtDynamicList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraBeforeAList: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraByWayOf: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParticipationDirectionsLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParticipationDirections: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementDeadlineDate: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementWritten: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAttendanceAtMiamLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamAttendingPerson: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCourtToInterpretersLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPersonWhoRequiresInterpreter: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterDialectRequired: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUpdateContactDetailsLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUpdateContactDetails: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioNextStepJudgeName: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocateOrReserveJudge: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocateOrReserveJudgeName: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationMagistrateLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationDistJudgeLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationCircuitJudgeLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocatedToJudgeLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioReservedToJudgeLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingDirections: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFirstHearingUrgencyDetailLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedAnotherReasonLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeAnotherReasonLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedReasonLabel: OK +2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementOtherCheckDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementOtherCheckDetailsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementOtherDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamAttendingPersonName: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamOtherDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamOtherCheckDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamOtherDetailsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterOtherDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterOtherDetailsCheck: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterOtherDetailsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityDetailsCheck: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityDetailsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferCourtDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferCourtDetailsCheck: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferCourtDetailsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityLetterLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityName: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityReportSubmitByDate: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioOtherLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOfPapersLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOfPapersCaseNumbers: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParentWithCareLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParentWithCare: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioApplicationToApplyPermissionLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioApplicationToApplyPermission: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOtherDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOtherDetailsCheck: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOtherDetailsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPreamblesLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioRightToAskCourtLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPartiesRaisedAbuseLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioRightToAskCourt: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPartiesRaisedAbuseCollection: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassOrCafcassCymruLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNextStepsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNextStepsCymruLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNewPartnerLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNewPartnerCymruLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSectionReportOrChildImpactLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServe: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassNextStepEditContent: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassCymruFileAndServe: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassCymruNextStepEditContent: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcass: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassCymru: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7EditContent: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7ImpactAnalysisOptions: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7FactsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7FactsEditContent: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7daOccuredLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7daOccuredEditContent: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7ChildImpactAnalysis: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNameOfCouncil: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassCymruReportSentByDate: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartyToProvideDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartyToProvideDetailsCheck: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartyToProvideDetailsLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassCheck: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7CheckDetails: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7Check: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7CheckLabel: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcass: OK +2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcassCymru: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcassText: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcassCymruText: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsCaseNeedsLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPreamblesList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPreamblesTempList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingsAndNextStepsList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingsAndNextStepsTempList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassOrCymruList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassOrCymruTempList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityTempList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCourtList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCourtTempList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocumentationAndEvidenceList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocumentationAndEvidenceTempList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFurtherList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoOtherList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoOtherTempList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFurtherDirectionDetails: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCourtLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationCourtDynamicList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationReason: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationSpecificReason: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationProhibitionLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEditContent: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationSittingBeforeOptions: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtDynamicList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationStartDateTime: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtHavingHeard: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx740Label: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx740: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationQualifiedLegalLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationQualifiedLegal: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferCourtDetails: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferCourtDetailsCheck: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferCourtDetailsLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtDetails: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtCheck: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtCheckLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx741Label: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx741: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocumentationAndEvidenceLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsDeadlineDate: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsSentTo: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCopiesSentTo: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCopiesSentToCafcass: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsMaximumPages: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpecifiedDocumentsLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpecifiedDocuments: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingPartiesDynamicList: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpipAttendanceLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpipAttendance: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDisclosureLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHospitalRecordsDeadlineDate: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDisclosureUploadedBy: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpDeadlineDate: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpUploadedBy: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolDeadlineDate: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolUploadedBy: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsLabel: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsOption: OK +2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCheckDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCheck: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCheckLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingCheck: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsDetailsLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscApplicantName: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscRespondentName: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoApplicantNameLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoRespondentNameLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscFilingDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscFilingCheck: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscDetailsLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGpApplicantName: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGpRespondentName: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGPApplicantNameLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGPRespondentNameLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromDiscGpCheck: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromDiscGpLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLsApplicantName: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLsRespondentName: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLSApplicantNameLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLSRespondentNameLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolCheck: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolCheckLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsCheckLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisClosureProceedingDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisClosureProceedingCheck: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisClosureProceedingLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocsEvidenceWitnessEvidence: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingsAndNextStepsLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationDecisionLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingPlaceLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamAttendanceLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForDraLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoJoiningInstructionsLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForFactFindingHearingLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoArrangeInterpretersLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUpdateContactDetailsLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterSecondGKLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingNotNeededLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParticipationDirectionsLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoJoiningInstructionsForRHLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterSecondGK: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSecondHearingDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAllocationTo: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingDate: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingTimeEstimate: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingCourtDynamicList: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentBecauseLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentCheckList: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentDetails: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentCourtConsider: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentTimeShortened: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentMustBeServedBy: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentByWayOf: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingNotNeeded: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraHearingDisputeLabel: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraStartDateTime: OK +2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraCourtDynamicList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraBeforeAList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraByWayOf: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParticipationDirections: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementDeadlineDate: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementWritten: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamAttendingPerson: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingOn: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingTimeEstimate: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingBeforeAList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraDecideBy: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraStartDateAndTime: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraHearing: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraCourtDynamicList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraHearingByWayOf: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceDateTime: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceTimeEstimate: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceCourtDynamicList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceByWayOf: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoJoiningInstructionsForRH: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingAllegationsMadeBy: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingCourtHasRequested: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllegationsDeadlineDate: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWrittenResponseDeadlineDate: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingReportsSentTo: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingReportsAlsoSentTo: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingMaximumPages: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingHowManyWitnessEvidence: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPersonNeedsInterpreter: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterDialectRequired: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUpdateContactDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepJudgeName: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateOrReserveJudge: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateOrReserveJudgeName: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNamedJudgeFullName: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationDistJudgeLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationCircuitJudgeLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationMagistratesLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoReservedToLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocatedToLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementOtherCheckDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementOtherCheckDetailsLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementOtherDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamOtherDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamOtherCheckDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamOtherDetailsLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingDirections: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingOtherCheck: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingOtherCheckLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingOtherDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterOtherDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterOtherDetailsCheck: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterOtherDetailsLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServeDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServeCheck: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServeDetailsLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingCafcassCymruDetails: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingCafcassCymruCheck: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingCafcassCymruDetailsLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentAnotherReason: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterGatekeeping: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateOrReserveJudgeLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterGatekeepingLabel: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateDecisionJudgeFullName: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingCourtRequests: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoMadeAllegationsText: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoNeedsToRespondAllegationsText: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoMadeAllegationsList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoNeedsToRespondAllegationsList: OK +2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForFactFindingHearingDetails: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForFactFindingHearingLabel2: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoNeedsToRespondAllegationsListText: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoMadeAllegationsListText: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityLetterLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityName: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityTextArea: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityReportSubmitByDate: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityDetails: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityCheck: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityDetailsLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoOtherLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisclosureOfPapersLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisclosureOfPapersCaseNumbers: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParentWithCareLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParentWithCare: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAdditionalDetailsLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSdoLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSdoListLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPreamblesLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoRightToAskCourtLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartiesRaisedAbuseLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoRightToAskCourt: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartiesRaisedAbuseCollection: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAfterSecondGatekeepingLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAfterSecondGatekeeping: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAddNewPreambleLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAddNewPreambleCollection: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingFlag: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingHintText: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAdminNotes: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouWantToServeOrder: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassOrCymruNeedToProvideReport: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassCymruDocuments: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whenReportsMustBeFiled: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderEndsInvolvementOfCafcassOrCymru: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatDoWithOrder: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrdersDynamicList: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewDraftOrderLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewDraftOrder: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewUploadedOrder: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewDraftOrderWelsh: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouWantToEditTheOrder: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatToDoWithOrderSolicitor: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatToDoWithOrderCourtAdmin: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionsToLegalRepresentative: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalRepInstructionsPlaceHolder: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionsToLegalRepresentativeLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field yourInstructionsToLrLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeDirectionsToAdmin: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderCompleteToServe: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionsFromJudge: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderUploadedAsDraftFlag: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderOptionType: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field downloadOrderLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkTheOrderLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field openOrderAndReviewContentLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field makeChangesToUploadedOrder: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadOrAmendDirectionsFromJudge: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadAmendedOrderLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editedUploadOrderDoc: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendedOrderLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field blankOrderLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404OccupationLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404nonMolestationLabel: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNotesEmptyUploadJourney: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNotesEmptyDraftJourney: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectedOrdersDynamicList: OK +2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editOrderTextInstructions: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editOrderTextInstructionsLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalWelshDocument: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFl401CaseCreatedForWithOutNotice: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDocumentHintLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDocumentHintLabel1: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401OnNoticeLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401WithOutNoticeReasonToRespondent: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401WithOutNoticeReasonToRespondentLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withOutNoticeReasonToShareApplicantLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDirections: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reducedNoticePeriodDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkedCaCasesList: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkedCaCasesFurtherDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantNeedsFurtherInfoDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNeedsFileStatementDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDirectionsToAdmin: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401LonOrderCompleteToServe: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeHearingDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDocument: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401RejectListWithoutNoticeHearingRequestLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ReasonsForListWithoutNoticeRequested: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeHearingInstructionLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401listOnNoticeHearingInstruction: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401StmtOfTruthResubmit: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ConfidentialityCheckResubmit: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentsDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentWitnessDuplicate: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadedDocuments: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentWitness: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentWitnessLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadWitnessDocuments: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentSupport: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadSupportDocuments: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNameHmctsInternal: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field SearchCriteria: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseManagementCategory: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseManagementLocation: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentHearingId: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentHearingStatus: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingListed: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfAppList: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field beforeYouStart: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field updatePayBubble: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field approveDeliveryManagerOrSeniorManager: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field Checkthehelpwithfeesapplication: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfApplicationDynamicData: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationHelpwithfeesreferenceApplicantApplication: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field outstandingBalance: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field managerAgreedApplicationBeforePayment: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addHwfCaseNoteShort: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheCaseInDraftState: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudge: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedReasonsForListOnNotice: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedAndAdditionalReasons: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listWithoutNoticeHearingDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listWithoutNoticeHearingInstructionLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listWithoutNoticeHearingInstruction: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtList: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtCodeFromFact: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field documentCategoryChecklist: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherEvidenceLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherEvidences: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mainApplicationDocument: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field giveDetails: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondenceLabel: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondence: OK +2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocumentsLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocuments: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mainAppDocForTabDisplay: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mainAppNotConf: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondenceForTabDisplay: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field corrNotConf: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocumentsForTabDisplay: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocNotConf: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocuments: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsWarningText: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsWarningText2: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsTriggeredBy: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsRestrictedFlag: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isC8DocumentPresent: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfC21Order: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfC21OrderLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderC21HearingLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder13: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21Order: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21OrderLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21OrderLabel1: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21OrderLabel2: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderC21SolicitorLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c21OrderOptions: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addOrderDetailsLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childArrangementsOrdersToIssue: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectChildArrangementsOrder: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder3: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel11: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentalResponsibility: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentName: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder7: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caffcassOfficeName: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caffcassCymruOfficeName: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassOfficeDetails: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel12: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersOptions: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createAnOrderLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createSelectOrderOptions: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withdrawnOrRefusedOrder: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectTypeOfOrder: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doesOrderClosesCase: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closeCaseDoableActions: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderByConsent: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCaseWithdrawn: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field wasTheOrderApprovedAtHearing: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingType: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingsType: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeOrMagistrateTitle: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderMadeByLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeOrMagistratesLastName: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field justiceLegalAdviserFullName: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderMade: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recitalsOrPreamble: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderDirections: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherDirectionsIfRequired: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transferCase: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsForTransfer: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseTransferOptions: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkYourOrder: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkYourOrderLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewOrderDoc: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewOrderDocWelsh: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkOrderRestrictionsLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderRecipientsLabel: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderRecipients: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherOrderRecipients: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassRecipient: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherRecipient: OK +2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassEmailAddress: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherEmailAddress: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenList: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childListForSpecialGuardianship: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderHearingLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderSummaryLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderSolicitorLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder5: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeader1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel2: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel3: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel4: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel5: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel7: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel6: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel8: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel9: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel10: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel13: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel14: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel19: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderHeaderLabel1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderCheckOrderLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderCollection: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtName1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAddress: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNumber: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantName1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantReference: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentReference: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderRespondentName: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field magistrateLastName: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder10: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field guardianTextBox: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel12: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsManageOrderLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDateOfBirth: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAddress: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addressTheOrderAppliesTo: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404bCustomFields: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtDeclares2: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeRights: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantInstructions: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appointedGuardianLabel: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field theRespondent2: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDay1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDay2: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentStartTime: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEndTime: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest2: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whenTheyLeave: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest3: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field moreDetails: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest4: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest6: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionRelating: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest5: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderMade1: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderEnds: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field datePlaceHearing: OK +2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderEndsTime: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field datePlaceHearingTime: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingTimeEstimate: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtName2: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childOption: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ukPostcode2: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationCost: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNotice: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appointedGuardianName: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404CustomFields: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderType: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateUploadOrderMade: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderAboutChildren: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderAboutAllChildren: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daOrderForCaCase: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel20: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whenToServeOrderLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNeedToBeServed: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field loggedInUserType: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentOrderCreatedDateTime: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherInformationIfRequired: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404SchoolDirections&Details: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenListForDocmosis: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCaseReviewHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDraHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hasJudgeProvidedHearingDetails: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderName: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameEditScreenLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel7: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel8: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel9: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel10: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel11: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel13: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameSolicitorLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameSummaryLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameHearingLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameDirectionsToAdminLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameInstructionsFromJudgeLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedHearingType: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isHearingPageNeeded: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markedToServeEmailNotification: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field performingUser: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field performingAction: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeLaReviewRequired: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForWA: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSdoSelected: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadHintLabel: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForSolicitorCreatedOrder: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForJudgeApproved: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForAdminCreatedOrder: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForJudgeCreatedOrder: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isHearingTaskNeeded: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingOptionSelected: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderApproved: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whoApprovedTheOrder: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isMultipleHearingSelected: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeLaManagerReviewRequired: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listElementsSetToDefaultValue: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editedOrderHasDefaultCaseFields: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestSafeGuardingLetterUpdate: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeGuardingLetterUploadDueDate: OK +2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkForAutomatedHearing: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalisationDetails: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402CourtName: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402CourtAddress: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402CaseNo: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402Applicant: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402ApplicantRef: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDateOfhearing: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfHearingTime: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfHearingTimeEstimate: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl402HearingCourtname: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl402HearingCourtAddress: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder4: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field creatingHearingRequiredLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createOneHearingLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field creatingHearingOptionalLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createMultipleHearingLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersHearingDetails: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorOrdersHearingDetails: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderCreatedBySolicitor: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel19: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createHearingRequiredLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createHearingOptionalLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorCreateHearingRequiredLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorCreateHearingOptionalLabel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCafcassCymru: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401ApplicantPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401ApplicantSolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401RespondentPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401RespondentSolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant1Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant2Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant3Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant4Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant5Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant1SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant2SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant3SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant4SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant5SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent1Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent2Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent3Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent4Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent5Present: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent1SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent2SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent3SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent4SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent5SolicitorPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isAutomatedHearingPresent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersCourtName: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersCourtAddress: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersCaseNo: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersApplicant: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersApplicantReference: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondent: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondentReference: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondentDob: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondentAddress: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingRepr: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingSolicitorCounsel: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingPerson: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingAddress: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingTerms: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDateOfUnderTaking: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingDateExpiry: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingExpiryDateTime: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingExpiryTime: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingFormSign: OK +2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel15: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder2: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderDynamicList: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderDownloadOrderLabel: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDocumentToAmendLabel: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDocumentToAmend: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderReplaceOrderLabel: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersAmendedOrderLabel: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersAmendedOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderSelectCheckOptions: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderSelectJudgeOrLa: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfJudgeAmendOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfLaAmendOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfJudgeToReviewOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfLaToReviewOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field managerCheckAmendOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeDirectionsToAdminAmendOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderCompleteToServeAmendOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel21: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrderDynamicList: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrderAdditionalDocumentsLabel: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrderAdditionalDocuments: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveToRespondentOptions: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel22: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingRespondentsOptionsCA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingOptionsForNonLegalRep: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAdminText: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtBailiffText: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recipientsOptions: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherParties: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassServedOptions: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassCymruServedOptions: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassCymruEmail: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassEmailId: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOtherPartiesCA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrgDetailsList: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deliveryByOptionsCA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailInformationCA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field postalInformationCA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOtherPartiesDA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailInformationDA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field postalInformationDA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deliveryByOptionsDA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingRespondentsOptionsDA: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field personallyServeRespondentsOptions: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field displayLegalRepOption: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel23: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOnlyC47aOrderSelectedToServe: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeoplePresentInCaseFlag: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel24: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveToRespondentOptionsOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingRespondentsOptionsCaOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recipientsOptionsOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPartiesOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOtherPartiesCaOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deliveryByOptionsCaOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailInformationCaOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field postalInformationCaOnlyC47a: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalOrderDocuments: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadAnOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childArrangementOrders: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseOrders: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fcOrders: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherOrdersOption: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfOrder: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderUploadedByConsent: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field approvalDate: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadOrderDoc: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messagesLabel: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendOrReplyEventLink: OK +2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field openMessageLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closedMessageLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuChildInvolvedInMiam: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuApplicantAttendedMiam: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuClaimingExemptionMiam: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPolicyUpgradeExemptionsLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuExemptionReasons: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel1: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuDomesticAbuseEvidences: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuIsDomesticAbuseEvidenceProvided: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuAddEvidenceLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuDomesticAbuseEvidenceDocument: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuNoDomesticAbuseEvidenceReason: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo9: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel5: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuChildProtectionConcernReason: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel2: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuUrgencyReason: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel3: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuPreviousMiamAttendanceReason: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuDocFromDisputeResolutionProvider: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuTypeOfPreviousMiamAttendanceEvidence: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuCertificateByMediator: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuMediatorDetails: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel4: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuOtherExemptionReasons: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuApplicantUnableToAttendMiamReason1: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuApplicantUnableToAttendMiamReason2: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nextHearingDetails: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field changeOrganisationRequestField: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicant: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondent: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5Policy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantPolicy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentPolicy: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fm5ReminderNotifications: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fm5RemindersSent: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenNotPartInTheCaseYesNo: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenNotInTheCase: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabApplicantsLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabChildrenLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabRespondentsLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherPartiesLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherChildAndRespondentPartiesLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherPartiesRevisedLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherChildNotInThePartiesLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabChildAndApplicantPartiesLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabChildAndRespondentPartiesLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherChildAndOtherPeoplePartiesLabel: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isPathfinderCase: OK +2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field PaymentHistory: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalProfQuarantineDocsList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenUploadQuarantineDocsList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenQuarantineDocsList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassQuarantineDocsList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtStaffQuarantineDocsList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tempQuarantineDocumentList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavQuarantineDocumentList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field refugeDocuments: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field historicalRefugeDocuments: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removableDocuments: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field documentsToBeRemoved: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeDraftOrdersDynamicList: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeOrderNameLabel: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkTheRemoveOrderLabel: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeDraftOrderText: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentStatusLabel: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherStatusMsg: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field changeStatusOptions: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reopenStateTo: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abilityToParticipateInProceedings: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohYesOrNo: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohDomesticAbuseYesNo: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohChildAbductionYesNo: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohChildAbuseYesNo: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohHint: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohLabel: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohSubstanceAbuseYesNo: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohSubstanceAbuseDetails: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOtherConcerns: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOtherConcernsDetails: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOrdersLabel: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOrdersLabelDetail: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestation: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationDateIssued: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationEndDate: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationCurrent: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationCourtName: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationCaseNumber: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationDocument: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupation: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationDateIssued: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationEndDate: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationCurrent: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationCourtName: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationCaseNumber: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationDocument: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtection: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionDateIssued: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionEndDate: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionCurrent: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionCourtName: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionCaseNumber: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionDocument: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestraining: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingDateIssued: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingEndDate: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingCurrent: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingCourtName: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingCaseNumber: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingDocument: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctive: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveDateIssued: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveEndDate: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveCurrent: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveCourtName: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveCaseNumber: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveDocument: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlace: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceDateIssued: OK +2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceEndDate: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceCurrent: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceCourtName: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceCaseNumber: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceDocument: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDomesticAbuseBehavioursLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbuseBehavioursLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbductionLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOthersConcernsLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbuseBehavioursSubLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDomesticAbuseBehavioursSubLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDomesticBehaviours: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbuses: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbductionReasons: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respPreviousAbductionThreats: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respPreviousAbductionThreatsDetails: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildrenLocationNow: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionPassportOfficeNotified: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionPreviousPoliceInvolvement: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionPreviousPoliceInvolvementDetails: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionChildHasPassport: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOtherConcernsCourtActions: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllegationsOfHarmChildContactLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAgreeChildUnsupervisedTime: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAgreeChildSupervisedTime: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAgreeChildOtherContact: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPhysicalAbuseLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPhysicalAbuseSubLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPhysicalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPsychologicalAbuseLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPsychologicalAbuseSubLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPsychologicalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildSexualAbuseLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildSexualAbuseSubLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildSexualAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildEmotionalAbuseLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildEmotionalAbuseSubLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildEmotionalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildFinancialAbuseLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildFinancialAbuseSubLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildFinancialAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskPhysicalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskPsychologicalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskSexualAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskEmotionalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskFinancialAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskPhysicalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskPsychologicalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskSexualAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskEmotionalAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskFinancialAbuse: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPassportDetails: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAohYesNo: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAllegationsOfHarm: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDomesticAbuseLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDomesticAbuseDescLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDomesticAbuseBehaviour: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbuseLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbuseDescLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbuseBehaviour: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbductionLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbduction: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentOtherConcernsLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentOtherConcerns: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAttendingTheCourt: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAttendingTheCourtDaActLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseProvisionLabel: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDocsList: OK +2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentADocumentsList: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBDocumentsList: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentCDocumentsList: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDDocumentsList: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEDocumentsList: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAc8: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBc8: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentCc8: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDc8: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEc8: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAc8Documents: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBc8Documents: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentCc8Documents: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDc8Documents: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEc8Documents: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field resSolConfirmEditContactDetails: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentConsentToApplication: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internationalElementChild: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepContactDetailsPrivate: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepDetailsPrivateSummaryHeading: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialListDetails: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepDetailsPrivateSummary: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtActionHeading: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAction: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepDetailsPrivateNoHeading: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noNeedOfPrivateDetailsLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolicitorHaveYouAttendedMiam: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatIsMiamPlaceHolder: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatIsMiamLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpMiamCostsExemptionsPlaceHolder: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpMiamCostsExemptionsLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hasRespondentAttendedMiam: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentWillingToAttendMiam: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentReasonNotAttendingMiam: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentOrPastProceedingsForChildren: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentExistingProceedings: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmYesOrNoResponse: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmDocument: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmWelshDocument: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentResponseToAllegationOfHarm: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponse: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel1: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel2: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel3: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel4: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel5: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel6: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel7: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel8: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel9: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel10: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field resSolConfidentialityDisclaimerSubmit: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100ResSolSubmitAndPayAgreeSignStmtLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAgreeStatement: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolSuccessLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolResponseStateLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolResponseCourtLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolResponseDownloadLabel: OK +2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC7ResponseDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC7WelshResponseDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC1AResponseDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC1AResponseDocWelsh: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolicitorName: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskList: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListA: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelA: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListB: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelB: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListC: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelC: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListD: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelD: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListE: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelE: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field viewPdfResponseLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkToDownloadC7Response: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkToDownloadC7ResponseLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC7ResponseDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC7WelshResponseDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC1ADoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC1ADocWelsh: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC8ResponseDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC8ResponseDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPrivateDisclaimer: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPrivateReasonLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPrivateReason: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToPrivateTabLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToPrivateTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPublicDisclaimer: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPublicReasonLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPublicReason: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsRestrictedDisclaimer: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsRestrictedReasonLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsRestrictedReason: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSecurityClassification: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToRestrictTabLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToRestrictTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field assignedUserDetailsText: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field assignedUserDetailsLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returnToPreviousStateLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedAdditionalApplicationsBundle: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isAdditionalApplicationReviewed: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel1: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel2: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsDynamicList: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel3: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel4: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDecisionYesOrNo: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field docToBeReviewed: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field docToBeReviewedLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field docLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field showLabel: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDoc: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalProfUploadDocListConfTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalProfUploadDocListDocTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassUploadDocListConfTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassUploadDocListDocTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtStaffUploadDocListConfTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtStaffUploadDocListDocTab: OK +2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScannedDocListDocTab: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScannedDocListConfTab: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field restrictedDocuments: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialDocuments: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenUploadedDocListDocTab: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavUploadedDocListDocTab: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field chooseSendOrReply: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageObject: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageContent: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field openMessages: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closedMessages: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field externalMessageAttachDocsList: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field replyMessageDynamicList: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReply: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeForSendAndReply: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendingMessagesLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field externalMessagesHint: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendingMessagesHint: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messages: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyDynamicList: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondToMessage: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyTable: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyTableLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyTableLabel2: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field replyMessageObject: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendMessageObject: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internalMessageAttachDocsList: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field letGateKeepersKnowLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendToGateKeeperHint: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSpecificGateKeeperNeeded: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isJudgeOrLegalAdviserGatekeeping: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeName: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalAdvisorList: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field gatekeepingDetails: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectOrdersLabel1: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfApplicationScreen1: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sentDocumentPlaceHolder: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sentDocumentsLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveTheseOrdersLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field automaticDocumentsLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pd36qLetterLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pd36qLetter: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noticeOfSafetySupportLetter: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangementsLetterLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangementsLetter: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDocumentsLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDocuments: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDocumentsList: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfApplicationHeader: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field headerLabel: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalServedApplicationDetailsList: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaHeaderLabel22: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServeToRespondentOptions: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServingRespondentsOptionsCA: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServingRespondentsOptions: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaRecipientsOptions: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherParties: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassServedOptions: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassCymruServedOptions: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassCymruEmail: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassEmailId: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherPeoplePresentInCaseFlag: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServingRespondentsOptionsDA: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaIsOrderListEmpty: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCitizenServingRespondentsOptionsCA: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCitizenServingRespondentsOptions: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCitizenServingRespondentsOptionsDA: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isConfidential: OK +2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field proceedToServing: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialDetailsArePresentBanner: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServeLocalAuthorityYesOrNo: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServeC8ToLocalAuthorityYesOrNo: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addDocumentsForLaLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaDocumentDynamicListForLa: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaLaEmailAddress: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningText: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningTextCA: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningTextLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningTextDA: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isC8CheckNeeded: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responsibleForService: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOccupationOrderSelected: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicantRepresented: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field productHearingBundleOn: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confirmRecipients: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCheckRestrictionsLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaConfirmRecipientsLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOrderSentToSolicitorLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaApplicantsList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaRespondentsList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherPeopleList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassEmailOptionChecked: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherEmailOptionChecked: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassEmailAddressList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherEmailAddressList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfApplicationLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedPackLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servedPackLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialCheckFailedLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodSelectDocumentsLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodDocumentsList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalDocumentsLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalDocumentsList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalRecipients: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalRecipientsList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodDocumentsCheckOptions: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodSolicitorServingRespondentsOptions: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodCitizenServingRespondentsOptions: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodUnServedPack: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servedDocumentsDetailsList: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodServeToRespondentOptions: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfDocumentsConfCheckWarningText: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field canDocumentsBeServed: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfDocumentsLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedDocumentsLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servedDocumentsLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ServiceRequest: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepWarningText: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepHeader: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepChooseParties: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepDisclaimer: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceAddRecipientLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceAddRecipient: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceForApplication: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceForOrder: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceWhatWasServed: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityDisclaimerSubmit: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplicationWelshLink: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field summaryLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pathfinderLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeDetails: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field refugeLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field refugeCase: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseStatusLabel: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseStatus: OK +2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityDetailsLabel: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialDetails: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field urgencyLabel: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field urgencyDetails: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTypeLabel: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTypeDetails: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmLabel: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarm: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmRevised: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangmentLabel: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangement: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderAppliedForLabel: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field summaryTabForOrderAppliedFor: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsLabelForSummaryTab: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsForSummaryTab: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfSubmissionLabel: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfSubmission: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingEmptyTable: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseClosedDate: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tsPaymentServiceRequestReferenceNumber: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tsPaymentStatus: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awpWaTaskName: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awpWaTaskToBeCreated: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awpHwfRefNo: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsBundleId: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderDocWelsh: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withDrawApplicationData: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isWithdrawRequestSent: OK +2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: OK: 2257 case fields parsed +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state AWAITING_SUBMISSION_TO_HMCTS: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state SUBMITTED_PAID: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state SUBMITTED_NOT_PAID: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state CASE_ISSUED: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state AWAITING_RESUBMISSION_TO_HMCTS: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state CASE_WITHDRAWN: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state JUDICIAL_REVIEW: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state DELETED: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state ALL_FINAL_ORDERS_ISSUED: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state PREPARE_FOR_HEARING_CONDUCT_HEARING: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state DECISION_OUTCOME: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state REQUESTED_FOR_DELETION: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state READY_FOR_DELETION: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state PROCEEDS_IN_HERITAGE_SYSTEM: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state AWAITING_INFORMATION: OK +2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: OK: 15 case states parsed +2026-02-06T16:25:47.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.MetadataCaseFieldParser Parsing metadata fields for case type PRLAPPS: OK: 1 metadata fields parsed +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminRemoveLegalRepresentativeC100: OK +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminRemoveLegalRepresentativeFL401: OK +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminAddBarrister: OK +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorAddBarrister: OK +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorRemoveBarrister: OK +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event barristerStopRepresenting: OK +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminRemoveBarrister: OK +2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenContactPreference: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event legalRepresentation: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event consentToTheApplication: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenRespondentAoH: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenInternalFlagUpdates: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCurrentOrPreviousProceeding: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenResponseToAoH: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityA: OK +2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityB: OK +2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityC: OK +2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityD: OK +2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityE: OK +2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmA: OK +2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmB: OK +2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmC: OK +2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmD: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmE: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtA: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtB: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtC: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtD: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtE: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsA: OK +2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsB: OK +2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsC: OK +2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsD: OK +2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsE: OK +2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationA: OK +2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationB: OK +2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationC: OK +2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationD: OK +2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationE: OK +2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementA: OK +2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementB: OK +2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementC: OK +2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementD: OK +2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementE: OK +2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateA: OK +2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateB: OK +2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateC: OK +2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateD: OK +2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateE: OK +2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamA: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamB: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamC: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamD: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamE: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsA: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsB: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsC: OK +2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsD: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsE: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmA: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmB: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmC: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmD: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmE: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitA: OK +2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitB: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitC: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitD: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitE: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentA: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentB: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentC: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentD: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentE: OK +2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createFlagsForGivenCaseNote: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenLanguageSupportNotes: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ManageSupport: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100RequestSupport: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ManageSupport: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401RequestSupport: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100CreateFlags: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createWaTaskForCtscCaseFlags: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ManageFlags: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ReviewRARequest: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event closeReviewRARequestTask: OK +2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401CreateFlags: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ManageFlags: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ReviewRARequest: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorCreate: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event attendingTheHearing: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendAttendingTheHearing: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event selectApplicationType: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendSelectApplicationType: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hearingUrgency: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildrenAndApplicants: OK +2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendHearingUrgency: OK +2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event withoutNoticeOrderDetails: OK +2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event applicantsDetails: OK +2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendApplicantsDetails: OK +2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childDetails: OK +2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childDetailsRevised: OK +2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildDetails: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildDetailsRevised: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentsDetails: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendRespondentsDetails: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ApplicantFamilyDetails: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event miam: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendMiam: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allegationsOfHarm: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allegationsOfHarmRevised: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendAllegationsOfHarmRevised: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendAllegationsOfHarm: OK +2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherPeopleInTheCase: OK +2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherChildNotInTheCase: OK +2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherPeopleInTheCase: OK +2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherPeopleInTheCaseRevised: OK +2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherPeopleInTheCaseRevised: OK +2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherChildNotInTheCase: OK +2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internationalElement: OK +2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenInternationalElement: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendInternationalElement: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherProceedings: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherProceedings: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401OtherProceedings: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event litigationCapacity: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendLitigationCapacity: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event welshLanguageRequirements: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendWelshLanguageRequirements: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event viewPdfDocument: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-task-list: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageDocuments: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageDocumentsNew: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event submitAndPay: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event safeguardingAndRiskOfHarm: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event addCaseNote: OK +2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event awaitingInformation: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event paymentSuccessCallback: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event issueAndSendToLocalCourtCallback: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event paymentFailureCallback: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentRelationship: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event attachScannedDocs: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event handleEvidence: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event uploadDocuments: OK +2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event caseNumber: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AddCaseNumber: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event returnApplication: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentBehaviour: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401TypeOfApplication: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-application-tab: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401Home: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-confidential-tab: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-all-tabs: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event WithdrawApplication_Event: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event sendToGateKeeper: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401SendToGateKeeper: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event resendRpa: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event sendOrReplyToMessages: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401StatementOfTruthAndSubmit: OK +2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401UploadDocuments: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageOrders: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event waManageOrders: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event deleteApplication: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event submit: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401resubmit: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event keepYourDetailsPrivate: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event confirmYourDetails: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hearingNeeds: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentMiam: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event courtnav-case-creation: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event courtnav-document-upload: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenUploadedDocument: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reviewAndSubmit: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event linkCitizenAccount: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizen-internal-case-update: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondent-responded-to-case: OK +2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createBundle: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event returnToPreviousState: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizen-case-update: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCreate: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizen-case-submit: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenAwpCreate: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenAwpHwfCreate: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenSaveC100DraftInternal: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event nocRequest: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event applyNocDecision: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event updateRepresentation: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createCaseLink: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event maintainCaseLink: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event asyncStitchingComplete: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hmcCaseUpdDecOutcome: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hmcCaseUpdPrepForHearing: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event addCafcassOfficer: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCaseSubmitWithHWF: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allocatedJudge: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event listWithoutNotice: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100listWithoutNotice: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCaseWithdraw: OK +2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event listOnNotice: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event cafcass-document-upload: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event UpdateNextHearingInfo: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reviewDocuments: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ListOnNotice: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendTypeOfApplication: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendWithoutNoticeOrderDetails: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendApplicantFamilyDetails: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendRespondentRelationship: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendRespondentBehaviour: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendOtherProceedings: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendHome: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenRemoveLegalRepresentative: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100-all-docs-reviewed: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401-all-docs-reviewed: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event statementOfService: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childrenAndApplicants: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childrenAndRespondents: OK +2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildrenAndRespondents: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childrenAndOtherPeople: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildrenAndOtherPeople: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event miamPolicyUpgrade: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendMiamPolicyUpgrade: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hwfProcessCaseUpdate: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event removeDraftOrder: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageCafcassAccess: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event enableUpdateHearingActualTask: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event enableRequestSolicitorOrderTask: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hmcHearingCompleted: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event removeDocuments: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reviewAdditionalApplication: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenStatementOfService: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event recordFinalDecision: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event editReturnedOrder: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fm5NotificationCaseUpdate: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fm5NotificationNotRequiredCaseUpdate: OK +2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event processUrgentHelpWithFees: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event migrateCase: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event draftAnOrder: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event editAndApproveAnOrder: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminEditAndApproveAnOrder: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hearingEditAndApproveAnOrder: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event pathfinderDecision: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event pcqUpdateForCitizen: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reopenClosedCases: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event publicCaseAccess: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event privateCaseAccess: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event restrictedCaseAccess: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event changeCaseAccess: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event serviceOfApplication: OK +2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event confidentialityCheck: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event serviceOfDocuments: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event serviceOfDocumentsConfCheck: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorStopRepresentingLiP: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummySolicitorCreate: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummySolicitorCreateCourtNav: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummyAdminCreateNoc: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportPaymentSuccessCallback: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event tsDummyPaymentAwP: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportRespondentTaskListA: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportRespondentTaskListB: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportRespondentTaskListC: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportCAUrgentCases: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummyCase: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendCourtDetails: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event transferToAnotherCourt: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event uploadAdditionalApplications: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event awpPaymentSuccessCallback: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event awpPaymentFailureCallback: OK +2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allAwPInReview: OK +2026-02-06T16:25:47.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event processHwfUpdateAwpStatus: OK +2026-02-06T16:25:47.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminCreate: OK +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminRemoveLegalRepresentativeC100: OK: 3 case fields parsed +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminRemoveLegalRepresentativeFL401: OK: 3 case fields parsed +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminAddBarrister: OK: 1 case fields parsed +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorAddBarrister: OK: 1 case fields parsed +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorRemoveBarrister: OK: 1 case fields parsed +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event barristerStopRepresenting: OK: 1 case fields parsed +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminRemoveBarrister: OK: 1 case fields parsed +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenContactPreference: No event case fields found +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event legalRepresentation: No event case fields found +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event consentToTheApplication: No event case fields found +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenRespondentAoH: No event case fields found +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenInternalFlagUpdates: No event case fields found +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCurrentOrPreviousProceeding: No event case fields found +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenResponseToAoH: No event case fields found +2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityA: OK: 4 case fields parsed +2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityB: OK: 4 case fields parsed +2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityC: OK: 4 case fields parsed +2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityD: OK: 4 case fields parsed +2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityE: OK: 4 case fields parsed +2026-02-06T16:25:47.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmA: OK: 114 case fields parsed +2026-02-06T16:25:47.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmB: OK: 114 case fields parsed +2026-02-06T16:25:47.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmC: OK: 114 case fields parsed +2026-02-06T16:25:47.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmD: OK: 114 case fields parsed +2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmE: OK: 114 case fields parsed +2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtA: OK: 6 case fields parsed +2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtB: OK: 6 case fields parsed +2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtC: OK: 6 case fields parsed +2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtD: OK: 6 case fields parsed +2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtE: OK: 6 case fields parsed +2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsA: OK: 4 case fields parsed +2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsB: OK: 4 case fields parsed +2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsC: OK: 4 case fields parsed +2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsD: OK: 4 case fields parsed +2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsE: OK: 4 case fields parsed +2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationA: OK: 4 case fields parsed +2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationB: OK: 4 case fields parsed +2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationC: OK: 4 case fields parsed +2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationD: OK: 4 case fields parsed +2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationE: OK: 4 case fields parsed +2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementA: OK: 4 case fields parsed +2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementB: OK: 4 case fields parsed +2026-02-06T16:25:47.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementC: OK: 4 case fields parsed +2026-02-06T16:25:47.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementD: OK: 4 case fields parsed +2026-02-06T16:25:47.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementE: OK: 4 case fields parsed +2026-02-06T16:25:47.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateA: OK: 13 case fields parsed +2026-02-06T16:25:47.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateB: OK: 13 case fields parsed +2026-02-06T16:25:47.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateC: OK: 13 case fields parsed +2026-02-06T16:25:47.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateD: OK: 13 case fields parsed +2026-02-06T16:25:47.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateE: OK: 13 case fields parsed +2026-02-06T16:25:47.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamA: OK: 13 case fields parsed +2026-02-06T16:25:47.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamB: OK: 13 case fields parsed +2026-02-06T16:25:47.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamC: OK: 13 case fields parsed +2026-02-06T16:25:47.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamD: OK: 13 case fields parsed +2026-02-06T16:25:47.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamE: OK: 13 case fields parsed +2026-02-06T16:25:47.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsA: OK: 6 case fields parsed +2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsB: OK: 6 case fields parsed +2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsC: OK: 6 case fields parsed +2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsD: OK: 6 case fields parsed +2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsE: OK: 6 case fields parsed +2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmA: OK: 5 case fields parsed +2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmB: OK: 5 case fields parsed +2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmC: OK: 5 case fields parsed +2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmD: OK: 5 case fields parsed +2026-02-06T16:25:47.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmE: OK: 5 case fields parsed +2026-02-06T16:25:47.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitA: OK: 12 case fields parsed +2026-02-06T16:25:47.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitB: OK: 12 case fields parsed +2026-02-06T16:25:47.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitC: OK: 12 case fields parsed +2026-02-06T16:25:47.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitD: OK: 12 case fields parsed +2026-02-06T16:25:47.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitE: OK: 12 case fields parsed +2026-02-06T16:25:47.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentA: OK: 9 case fields parsed +2026-02-06T16:25:47.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentB: OK: 9 case fields parsed +2026-02-06T16:25:47.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentC: OK: 9 case fields parsed +2026-02-06T16:25:47.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentD: OK: 9 case fields parsed +2026-02-06T16:25:47.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentE: OK: 9 case fields parsed +2026-02-06T16:25:47.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createFlagsForGivenCaseNote: OK: 86 case fields parsed +2026-02-06T16:25:47.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenLanguageSupportNotes: OK: 1 case fields parsed +2026-02-06T16:25:47.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ManageSupport: OK: 36 case fields parsed +2026-02-06T16:25:47.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100RequestSupport: OK: 37 case fields parsed +2026-02-06T16:25:47.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ManageSupport: OK: 7 case fields parsed +2026-02-06T16:25:47.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401RequestSupport: OK: 8 case fields parsed +2026-02-06T16:25:47.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100CreateFlags: OK: 73 case fields parsed +2026-02-06T16:25:47.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createWaTaskForCtscCaseFlags: OK: 1 case fields parsed +2026-02-06T16:25:47.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ManageFlags: OK: 72 case fields parsed +2026-02-06T16:25:47.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ReviewRARequest: OK: 2 case fields parsed +2026-02-06T16:25:47.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event closeReviewRARequestTask: No event case fields found +2026-02-06T16:25:47.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401CreateFlags: OK: 15 case fields parsed +2026-02-06T16:25:47.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ManageFlags: OK: 14 case fields parsed +2026-02-06T16:25:47.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ReviewRARequest: OK: 2 case fields parsed +2026-02-06T16:25:47.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorCreate: OK: 12 case fields parsed +2026-02-06T16:25:47.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event attendingTheHearing: OK: 20 case fields parsed +2026-02-06T16:25:47.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendAttendingTheHearing: OK: 20 case fields parsed +2026-02-06T16:25:47.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event selectApplicationType: OK: 16 case fields parsed +2026-02-06T16:25:47.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendSelectApplicationType: OK: 16 case fields parsed +2026-02-06T16:25:47.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hearingUrgency: OK: 10 case fields parsed +2026-02-06T16:25:47.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildrenAndApplicants: OK: 3 case fields parsed +2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendHearingUrgency: OK: 10 case fields parsed +2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event withoutNoticeOrderDetails: OK: 8 case fields parsed +2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event applicantsDetails: OK: 5 case fields parsed +2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendApplicantsDetails: OK: 5 case fields parsed +2026-02-06T16:25:47.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childDetails: OK: 7 case fields parsed +2026-02-06T16:25:47.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childDetailsRevised: OK: 7 case fields parsed +2026-02-06T16:25:47.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildDetails: OK: 7 case fields parsed +2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildDetailsRevised: OK: 7 case fields parsed +2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentsDetails: OK: 5 case fields parsed +2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendRespondentsDetails: OK: 5 case fields parsed +2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ApplicantFamilyDetails: OK: 3 case fields parsed +2026-02-06T16:25:47.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event miam: OK: 41 case fields parsed +2026-02-06T16:25:47.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendMiam: OK: 41 case fields parsed +2026-02-06T16:25:47.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allegationsOfHarm: OK: 74 case fields parsed +2026-02-06T16:25:47.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allegationsOfHarmRevised: OK: 102 case fields parsed +2026-02-06T16:25:47.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendAllegationsOfHarmRevised: OK: 102 case fields parsed +2026-02-06T16:25:47.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendAllegationsOfHarm: OK: 74 case fields parsed +2026-02-06T16:25:47.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherPeopleInTheCase: OK: 2 case fields parsed +2026-02-06T16:25:47.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherChildNotInTheCase: OK: 3 case fields parsed +2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherPeopleInTheCase: OK: 2 case fields parsed +2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherPeopleInTheCaseRevised: OK: 2 case fields parsed +2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherPeopleInTheCaseRevised: OK: 2 case fields parsed +2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherChildNotInTheCase: OK: 3 case fields parsed +2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internationalElement: OK: 7 case fields parsed +2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenInternationalElement: No event case fields found +2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendInternationalElement: OK: 7 case fields parsed +2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherProceedings: OK: 4 case fields parsed +2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherProceedings: OK: 4 case fields parsed +2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401OtherProceedings: OK: 2 case fields parsed +2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event litigationCapacity: OK: 5 case fields parsed +2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendLitigationCapacity: OK: 5 case fields parsed +2026-02-06T16:25:47.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event welshLanguageRequirements: OK: 5 case fields parsed +2026-02-06T16:25:47.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendWelshLanguageRequirements: OK: 4 case fields parsed +2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event viewPdfDocument: OK: 10 case fields parsed +2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-task-list: No event case fields found +2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageDocuments: OK: 10 case fields parsed +2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageDocumentsNew: OK: 7 case fields parsed +2026-02-06T16:25:47.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event submitAndPay: OK: 18 case fields parsed +2026-02-06T16:25:47.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event safeguardingAndRiskOfHarm: OK: 46 case fields parsed +2026-02-06T16:25:47.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event addCaseNote: OK: 3 case fields parsed +2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event awaitingInformation: OK: 2 case fields parsed +2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event paymentSuccessCallback: No event case fields found +2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event issueAndSendToLocalCourtCallback: OK: 2 case fields parsed +2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event paymentFailureCallback: No event case fields found +2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentRelationship: OK: 5 case fields parsed +2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event attachScannedDocs: OK: 5 case fields parsed +2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event handleEvidence: OK: 1 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event uploadDocuments: OK: 8 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event caseNumber: OK: 1 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AddCaseNumber: OK: 1 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event returnApplication: OK: 8 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentBehaviour: OK: 2 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401TypeOfApplication: OK: 4 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-application-tab: No event case fields found +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401Home: OK: 2 case fields parsed +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-confidential-tab: No event case fields found +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-all-tabs: No event case fields found +2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event WithdrawApplication_Event: OK: 1 case fields parsed +2026-02-06T16:25:47.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event sendToGateKeeper: OK: 7 case fields parsed +2026-02-06T16:25:47.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401SendToGateKeeper: OK: 7 case fields parsed +2026-02-06T16:25:47.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event resendRpa: No event case fields found +2026-02-06T16:25:47.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event sendOrReplyToMessages: OK: 15 case fields parsed +2026-02-06T16:25:47.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401StatementOfTruthAndSubmit: OK: 4 case fields parsed +2026-02-06T16:25:47.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401UploadDocuments: OK: 5 case fields parsed +2026-02-06T16:25:47.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageOrders: OK: 562 case fields parsed +2026-02-06T16:25:47.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event waManageOrders: OK: 561 case fields parsed +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event deleteApplication: OK: 2 case fields parsed +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event submit: OK: 7 case fields parsed +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401resubmit: OK: 2 case fields parsed +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event keepYourDetailsPrivate: OK: 3 case fields parsed +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event confirmYourDetails: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hearingNeeds: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentMiam: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event courtnav-case-creation: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event courtnav-document-upload: OK: 2 case fields parsed +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenUploadedDocument: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reviewAndSubmit: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event linkCitizenAccount: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizen-internal-case-update: No event case fields found +2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondent-responded-to-case: No event case fields found +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createBundle: OK: 3 case fields parsed +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event returnToPreviousState: OK: 1 case fields parsed +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizen-case-update: OK: 3 case fields parsed +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCreate: No event case fields found +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizen-case-submit: No event case fields found +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenAwpCreate: OK: 1 case fields parsed +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenAwpHwfCreate: No event case fields found +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenSaveC100DraftInternal: No event case fields found +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event nocRequest: OK: 1 case fields parsed +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event applyNocDecision: No event case fields found +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event updateRepresentation: No event case fields found +2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createCaseLink: OK: 4 case fields parsed +2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event maintainCaseLink: OK: 4 case fields parsed +2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event asyncStitchingComplete: No event case fields found +2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hmcCaseUpdDecOutcome: OK: 3 case fields parsed +2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hmcCaseUpdPrepForHearing: OK: 5 case fields parsed +2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event addCafcassOfficer: OK: 1 case fields parsed +2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCaseSubmitWithHWF: No event case fields found +2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allocatedJudge: OK: 7 case fields parsed +2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event listWithoutNotice: OK: 2 case fields parsed +2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100listWithoutNotice: OK: 2 case fields parsed +2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCaseWithdraw: No event case fields found +2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event listOnNotice: OK: 9 case fields parsed +2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event cafcass-document-upload: OK: 3 case fields parsed +2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event UpdateNextHearingInfo: No event case fields found +2026-02-06T16:25:47.521 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reviewDocuments: OK: 12 case fields parsed +2026-02-06T16:25:47.521 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ListOnNotice: OK: 5 case fields parsed +2026-02-06T16:25:47.521 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendTypeOfApplication: OK: 4 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendWithoutNoticeOrderDetails: OK: 8 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendApplicantFamilyDetails: OK: 3 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendRespondentRelationship: OK: 5 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendRespondentBehaviour: OK: 2 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendOtherProceedings: OK: 2 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendHome: OK: 2 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenRemoveLegalRepresentative: OK: 1 case fields parsed +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100-all-docs-reviewed: No event case fields found +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401-all-docs-reviewed: No event case fields found +2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event statementOfService: OK: 3 case fields parsed +2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childrenAndApplicants: OK: 3 case fields parsed +2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childrenAndRespondents: OK: 3 case fields parsed +2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildrenAndRespondents: OK: 3 case fields parsed +2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childrenAndOtherPeople: OK: 3 case fields parsed +2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildrenAndOtherPeople: OK: 3 case fields parsed +2026-02-06T16:25:47.525 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event miamPolicyUpgrade: OK: 39 case fields parsed +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendMiamPolicyUpgrade: OK: 39 case fields parsed +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hwfProcessCaseUpdate: No event case fields found +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event removeDraftOrder: OK: 4 case fields parsed +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageCafcassAccess: OK: 1 case fields parsed +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event enableUpdateHearingActualTask: OK: 2 case fields parsed +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event enableRequestSolicitorOrderTask: OK: 1 case fields parsed +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hmcHearingCompleted: No event case fields found +2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event removeDocuments: OK: 2 case fields parsed +2026-02-06T16:25:47.529 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reviewAdditionalApplication: OK: 10 case fields parsed +2026-02-06T16:25:47.529 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenStatementOfService: No event case fields found +2026-02-06T16:25:47.529 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event recordFinalDecision: OK: 8 case fields parsed +2026-02-06T16:25:47.535 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event editReturnedOrder: OK: 118 case fields parsed +2026-02-06T16:25:47.535 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fm5NotificationCaseUpdate: No event case fields found +2026-02-06T16:25:47.535 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fm5NotificationNotRequiredCaseUpdate: No event case fields found +2026-02-06T16:25:47.536 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event processUrgentHelpWithFees: OK: 12 case fields parsed +2026-02-06T16:25:47.536 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event migrateCase: No event case fields found +2026-02-06T16:25:47.551 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event draftAnOrder: OK: 349 case fields parsed +2026-02-06T16:25:47.570 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event editAndApproveAnOrder: OK: 362 case fields parsed +2026-02-06T16:25:47.589 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminEditAndApproveAnOrder: OK: 387 case fields parsed +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hearingEditAndApproveAnOrder: OK: 387 case fields parsed +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event pathfinderDecision: OK: 1 case fields parsed +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event pcqUpdateForCitizen: No event case fields found +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reopenClosedCases: OK: 5 case fields parsed +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event publicCaseAccess: OK: 3 case fields parsed +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event privateCaseAccess: OK: 5 case fields parsed +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event restrictedCaseAccess: OK: 5 case fields parsed +2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event changeCaseAccess: No event case fields found +2026-02-06T16:25:47.612 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event serviceOfApplication: OK: 41 case fields parsed +2026-02-06T16:25:47.614 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event confidentialityCheck: OK: 40 case fields parsed +2026-02-06T16:25:47.615 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event serviceOfDocuments: OK: 18 case fields parsed +2026-02-06T16:25:47.615 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event serviceOfDocumentsConfCheck: OK: 17 case fields parsed +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorStopRepresentingLiP: OK: 4 case fields parsed +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummySolicitorCreate: OK: 5 case fields parsed +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummySolicitorCreateCourtNav: No event case fields found +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummyAdminCreateNoc: OK: 5 case fields parsed +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportPaymentSuccessCallback: No event case fields found +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event tsDummyPaymentAwP: OK: 2 case fields parsed +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportRespondentTaskListA: No event case fields found +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportRespondentTaskListB: No event case fields found +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportRespondentTaskListC: No event case fields found +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportCAUrgentCases: OK: 5 case fields parsed +2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummyCase: No event case fields found +2026-02-06T16:25:47.617 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendCourtDetails: OK: 4 case fields parsed +2026-02-06T16:25:47.617 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event transferToAnotherCourt: OK: 11 case fields parsed +2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event uploadAdditionalApplications: OK: 14 case fields parsed +2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event awpPaymentSuccessCallback: OK: 1 case fields parsed +2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event awpPaymentFailureCallback: No event case fields found +2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allAwPInReview: No event case fields found +2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event processHwfUpdateAwpStatus: OK: 1 case fields parsed +2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminCreate: OK: 10 case fields parsed +2026-02-06T16:25:48.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: OK: 269 case fields parsed +2026-02-06T16:25:48.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchAliasFieldParser Parsed 0 search alias fields for case type PRLAPPS +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-courtadmin for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-solicitor for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile citizen for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-judge for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-la for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-superuser for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-systemupdate for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile courtnav for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-caa for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-approver for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-wa-task-configuration for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-ras-validation for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile GS_profile for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-externaluser-viewonly for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-readonly for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile hearing-centre-team-leader for case type PRLAPPS: OK +2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-cafcass for case type PRLAPPS: OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-courtadmin', crud 'RUD': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-judge', crud 'RUD': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-la', crud 'RUD': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'RUD': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'testCaseName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'testCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'testCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-courtadmin', crud 'CR': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-judge', crud 'CR': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-la', crud 'CR': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-superuser', crud 'CR': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepHeader', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepHeader', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabCaseNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabCaseNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenAwpPayments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenAwpPayments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-bulkscan', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConfidentiality', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConfidentiality', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDocumentsCopy', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDocumentsCopy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-readonly', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'ctsc-team-leader', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelPleaseUploadDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelPleaseUploadDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelDocumentsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelDocumentsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelContactOrResidenceOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelContactOrResidenceOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelC8FormForConfidentiality', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelC8FormForConfidentiality', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelUploadOtherDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelUploadOtherDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraConsentOrderNotification', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraConsentOrderNotification', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-solicitor', crud 'CR': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-solicitor', crud 'CR': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100SelectFamilyCourtLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceRequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceRequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TestField', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TestField', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNoteId', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNoteId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNoteId', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TTL', access profile 'TTL_profile', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TTL', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'allocated-magistrate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'senior-tribunal-caseworker', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'tribunal-caseworker', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'ctsc', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'hearing-centre-admin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'applicationsWithinProceedingsRes' +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deletionConsent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deletionConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deletionConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'citizen', crud 'RU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-cafcass', crud 'RU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-readonly', crud 'RU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortenedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortenedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationMagistrateLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationMagistrateLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocatedToJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocatedToJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioReservedToJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioReservedToJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetailLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetailLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedAnotherReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedAnotherReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeAnotherReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeAnotherReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SearchCriteria', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SearchCriteria', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SearchCriteria', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementCategory', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementCategory', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementCategory', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderHeaderLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderHeaderLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderCheckOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderCheckOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'RU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-cafcass', crud 'RU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-readonly', crud 'RU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateUploadOrderMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateUploadOrderMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'finalisationDetails' +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDownloadOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDownloadOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerCheckAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerCheckAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-caa', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-approver', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'PaymentHistory', access profile 'payments', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'PaymentHistory', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'PaymentHistory', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removableDocuments', access profile 'caseworker-privatelaw-superuser', crud 'CRD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentsToBeRemoved', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeOrderNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeOrderNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeOrderNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheRemoveOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheRemoveOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheRemoveOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrderText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrderText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrderText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateNoHeading', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateNoHeading', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noNeedOfPrivateDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noNeedOfPrivateDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK +2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnToPreviousStateLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnToPreviousStateLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnToPreviousStateLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:48.511 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'sodSelectDocumentsLabel' +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'sodAdditionalDocumentsLabel' +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'pui-case-manager', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepWarningText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepHeader', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepHeader', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentStatus', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:48.520 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field '[STATE]' +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyCaseAssignedRole', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyReference', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationID', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationName', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PreviousOrganisations', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PrepopulateToUsersOrganisation', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'LastNoCRequestedBy', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyCaseAssignedRole', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyReference', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationID', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationName', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PreviousOrganisations', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PrepopulateToUsersOrganisation', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'LastNoCRequestedBy', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyCaseAssignedRole', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PreviousOrganisations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PrepopulateToUsersOrganisation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'LastNoCRequestedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'citizen', crud 'U': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'citizen', crud 'U': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-solicitor', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'citizen', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-solicitor', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'citizen', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK +2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK +2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'TTL', complexFieldReference 'SystemTTL', access profile 'TTL_profile', crud 'R': OK +2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'TTL', complexFieldReference 'Suspended', access profile 'TTL_profile', crud 'CRU': OK +2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'TTL', complexFieldReference 'OverrideTTL', access profile 'TTL_profile', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile 'hearing-centre-team-leader', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'hearing-centre-team-leader', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER1]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER2]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER3]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER4]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER5]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[FL401APPLICANTBARRISTER]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'hearing-centre-team-leader', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternalFlagUpdates', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternalFlagUpdates', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternalFlagUpdates', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCurrentOrPreviousProceeding', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCurrentOrPreviousProceeding', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCurrentOrPreviousProceeding', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createWaTaskForCtscCaseFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createWaTaskForCtscCaseFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createWaTaskForCtscCaseFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-task-list', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-task-list', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'safeguardingAndRiskOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'handleEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'handleEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-application-tab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-application-tab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-confidential-tab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-confidential-tab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-all-tabs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-all-tabs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'resendRpa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'resendRpa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendOrReplyToMessages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendOrReplyToMessages', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendOrReplyToMessages', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'courtnav', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnToPreviousState', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenSaveC100DraftInternal', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenSaveC100DraftInternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenSaveC100DraftInternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'nocRequest', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'nocRequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'nocRequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applyNocDecision', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applyNocDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'updateRepresentation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'updateRepresentation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableUpdateHearingActualTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableUpdateHearingActualTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableUpdateHearingActualTask', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableRequestSolicitorOrderTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableRequestSolicitorOrderTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableRequestSolicitorOrderTask', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcHearingCompleted', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcHearingCompleted', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcHearingCompleted', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationNotRequiredCaseUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationNotRequiredCaseUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'migrateCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CR': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'migrateCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pcqUpdateForCitizen', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pcqUpdateForCitizen', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pcqUpdateForCitizen', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'courtnav', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-la', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'changeCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile '[CREATOR]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'hearing-centre-team-leader', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[CREATOR]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'hearing-centre-admin', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile '[CREATOR]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-courtadmin-casecreator', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allAwPInReview', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allAwPInReview', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allAwPInReview', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'citizen', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-courtadmin-casecreator', crud 'CRU': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-courtadmin-casecreator', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'courtnav', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'ctsc-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'ctsc-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'ctsc-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'hearing-centre-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'ctsc-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'hearing-centre-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.273 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser No row is defined for case type 'PRLAPPS', state 'DELETED' +2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'ctsc-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'ctsc-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'hearing-centre-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'citizen', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-caa', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-approver', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'ctsc-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'hearing-centre-team-leader', crud 'CRUD': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-ras-validation', crud 'R': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.276 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser No row is defined for case type 'PRLAPPS', state 'REQUESTED_FOR_DELETION' +2026-02-06T16:25:49.277 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser No row is defined for case type 'PRLAPPS', state 'READY_FOR_DELETION' +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-superuser', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-wa-task-configuration', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'citizen', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'GS_profile', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-la', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-judge', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-caa', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-approver', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-readonly', crud 'R': OK +2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeParser Case types parsing: Parsing case type PRLAPPS: OK +2026-02-06T16:26:01.667 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Case types parsing: OK: 1 case types parsed +2026-02-06T16:26:01.667 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: Case types: OK: 1 case types imported +2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchInputLayoutParser Layout parsing: Case type PRLAPPS: OK +2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchInputLayoutParser Layout parsing: OK +2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchResultLayoutParser Layout parsing: Case type PRLAPPS: OK +2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchResultLayoutParser Layout parsing: OK +2026-02-06T16:26:01.676 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.WorkbasketInputLayoutParser Layout parsing: Case type PRLAPPS: OK +2026-02-06T16:26:01.676 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.WorkbasketInputLayoutParser Layout parsing: OK +2026-02-06T16:26:01.677 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.WorkbasketLayoutParser Layout parsing: Case type PRLAPPS: OK +2026-02-06T16:26:01.677 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.WorkbasketLayoutParser Layout parsing: OK +2026-02-06T16:26:09.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.SearchCasesResultLayoutParser Layout parsing: Case type PRLAPPS: OK +2026-02-06T16:26:09.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.SearchCasesResultLayoutParser Layout parsing: OK +2026-02-06T16:26:09.241 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Orders: OK +2026-02-06T16:26:09.241 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group caseLinksTab: OK +2026-02-06T16:26:09.242 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ServiceOfApplication: OK +2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group documents: OK +2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group OtherApplicationsTab: OK +2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasks: OK +2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group History: OK +2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group caseFileView: OK +2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group CasePaymentHistory: OK +2026-02-06T16:26:09.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Parties: OK +2026-02-06T16:26:09.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group FL401Parties: OK +2026-02-06T16:26:09.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group BundleInformation: OK +2026-02-06T16:26:09.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksA: OK +2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group FL401ApplicationDetails: OK +2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksC: OK +2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksB: OK +2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksE: OK +2026-02-06T16:26:09.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksD: OK +2026-02-06T16:26:09.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ApplicationDetails: OK +2026-02-06T16:26:09.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Messages: OK +2026-02-06T16:26:09.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Tasks: OK +2026-02-06T16:26:09.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group laCaseFlagsViewTab: OK +2026-02-06T16:26:09.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ApplicationPaymentLink: OK +2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group CATasks: OK +2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ServiceOfDocuments: OK +2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group paymentSummary: OK +2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group addCaseNote: OK +2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group DraftOrders: OK +2026-02-06T16:26:09.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Summary: OK +2026-02-06T16:26:09.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ServiceRequestTab: OK +2026-02-06T16:26:09.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group quarantine: OK +2026-02-06T16:26:09.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group confidentialDetails: OK +2026-02-06T16:26:09.276 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group support: OK +2026-02-06T16:26:09.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group judgesCaseFlagsViewTab: OK +2026-02-06T16:26:09.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group caCaseFlagsViewTab: OK +2026-02-06T16:26:09.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: OK +2026-02-06T16:26:09.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: OK +2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementD1: OK +2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB1: OK +2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB3: OK +2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateB1: OK +2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB2: OK +2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateB3: OK +2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateB4: OK +2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails2: OK +2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA8: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders1: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails3: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA7: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails1: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA9: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA4: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA3: OK +2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA6: OK +2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA5: OK +2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders9: OK +2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders8: OK +2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders7: OK +2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocumentsConfCheck1: OK +2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders6: OK +2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationA1: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders5: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders4: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders3: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders2: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group returnApplication2: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group returnApplication1: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group issueAndSendToLocalCourtCallback1: OK +2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementC1: OK +2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC2: OK +2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC1: OK +2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC4: OK +2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC3: OK +2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateA1: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateA3: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateA4: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB9: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB8: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB5: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB4: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB7: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentRelationship2: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB6: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentRelationship1: OK +2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizenLanguageSupportNotes1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam9: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam8: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group privateCaseAccess1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group privateCaseAccess2: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummySolicitorCreate2: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingUrgency1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorAddBarrister1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsA1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendApplicantFamilyDetails1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group courtnav-document-upload1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateD1: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummySolicitorCreate3: OK +2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateD3: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateD4: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam9: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam7: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam8: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ReviewRARequest1: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam1: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm4: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm3: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders8: OK +2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam3: OK +2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm2: OK +2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders9: OK +2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam2: OK +2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm1: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders6: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportCAUrgentCases2: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam5: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders7: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam4: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group awpPaymentSuccessCallback1: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders4: OK +2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam7: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders5: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportCAUrgentCases3: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam6: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders2: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType3: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders3: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType2: OK +2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders1: OK +2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType4: OK +2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementE1: OK +2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType1: OK +2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateC1: OK +2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA2: OK +2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA1: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateC3: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateC4: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails4: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails3: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails4: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails1: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails2: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders20: OK +2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders21: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders24: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders25: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders22: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders23: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders28: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate5: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationE1: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate4: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityA1: OK +2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders26: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders27: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate6: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processHwfUpdateAwpStatus1: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group tsDummyPaymentAwP1: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate3: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate2: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group WithdrawApplication_Event1: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam5: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam6: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam3: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders30: OK +2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam4: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadDocuments1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam2: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityB1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childrenAndRespondents1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createBundle1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationD1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ListOnNotice1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group attachScannedDocs2: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ListOnNotice2: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group attachScannedDocs1: OK +2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfApplication2: OK +2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder9: OK +2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfApplication4: OK +2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType4: OK +2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType3: OK +2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType2: OK +2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType1: OK +2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder2: OK +2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processUrgentHelpWithFees1: OK +2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder5: OK +2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder6: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationC1: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processUrgentHelpWithFees3: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder7: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group cafcass-document-upload1: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processUrgentHelpWithFees2: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder8: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised10: OK +2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised11: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications4: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications3: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications2: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications1: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder1: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder2: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder3: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders10: OK +2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders13: OK +2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders14: OK +2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders11: OK +2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders12: OK +2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders17: OK +2026-02-06T16:26:09.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders18: OK +2026-02-06T16:26:09.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders15: OK +2026-02-06T16:26:09.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders16: OK +2026-02-06T16:26:09.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationB1: OK +2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders19: OK +2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentRelationship2: OK +2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocumentsNew1: OK +2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade1: OK +2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmA1: OK +2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentRelationship1: OK +2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB11: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetails1: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityE1: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetails2: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB10: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentBehaviour1: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade6: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade7: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade8: OK +2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade2: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherProceedings1: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade3: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitA1: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade4: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitA2: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade5: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmB1: OK +2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group attendingTheHearing1: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group maintainCaseLinkmaintainCaseLink: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDocuments1: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDocuments2: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder12: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder13: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder10: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmC1: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder11: OK +2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtA1: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtA2: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401UploadDocuments1: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC10: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC11: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummyAdminCreateNoc3: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummyAdminCreateNoc2: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetails2: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityC1: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetails1: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmD1: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorRemoveBarrister1: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtB2: OK +2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group restrictedCaseAccess1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group restrictedCaseAccess2: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtB1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityD1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDraftOrder1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDraftOrder2: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildrenAndApplicants1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmE1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group viewPdfDocument1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder21: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtC1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AddCaseNumber1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group keepYourDetailsPrivate1: OK +2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtC2: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder1: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group recordFinalDecision2: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD10: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group recordFinalDecision1: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group publicCaseAccess1: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD11: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group publicCaseAccess2: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocuments2: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocuments3: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitE1: OK +2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocuments1: OK +2026-02-06T16:26:09.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitE2: OK +2026-02-06T16:26:09.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group litigationCapacity1: OK +2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder17: OK +2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder16: OK +2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder15: OK +2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetailsRevised1: OK +2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder14: OK +2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetailsRevised2: OK +2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder13: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder11: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder10: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateE1: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateE3: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateE4: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtD2: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizen-case-update1: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtD1: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizen-case-update4: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages3: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages2: OK +2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder2: OK +2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages5: OK +2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder5: OK +2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages4: OK +2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder4: OK +2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder7: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder6: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages1: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder9: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder8: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childrenAndApplicants1: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder20: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder20: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitD1: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitD2: OK +2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder22: OK +2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder21: OK +2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder23: OK +2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised9: OK +2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised8: OK +2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised3: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised2: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised1: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised7: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised6: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtE1: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendOtherProceedings1: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised5: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtE2: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised4: OK +2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewDocuments2: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised4: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised3: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE10: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childrenAndOtherPeople1: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised6: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewDocuments1: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE11: OK +2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised5: OK +2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised2: OK +2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm4: OK +2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401OtherProceedings1: OK +2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised1: OK +2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade8: OK +2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm2: OK +2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade7: OK +2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm3: OK +2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm1: OK +2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitC1: OK +2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade4: OK +2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised8: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitC2: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade3: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised7: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade6: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendTypeOfApplication2: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade5: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendTypeOfApplication1: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised9: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade2: OK +2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade1: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group transferToAnotherCourt1: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamE1: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamE2: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createCaseLinkcreateCaseLink: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitB1: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitB2: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submitAndPay2: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submitAndPay1: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submitAndPay3: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamD2: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamD1: OK +2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401resubmit1: OK +2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ManageSupport1: OK +2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentB1: OK +2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401resubmit2: OK +2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminAddBarrister1: OK +2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate2: OK +2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createFlagsForGivenCaseNote1: OK +2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamC1: OK +2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamC2: OK +2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hmcCaseUpdDecOutcome1: OK +2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate3: OK +2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate4: OK +2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate5: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate6: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group enableUpdateHearingActualTask1: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentA1: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createWaTaskForCtscCaseFlags1: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsA1: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders11: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder15: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherChildNotInTheCase1: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders12: OK +2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder14: OK +2026-02-06T16:26:09.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder17: OK +2026-02-06T16:26:09.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsC1: OK +2026-02-06T16:26:09.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders10: OK +2026-02-06T16:26:09.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder16: OK +2026-02-06T16:26:09.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders15: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders16: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders13: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders14: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamB1: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamB2: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reopenClosedCases1: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentD1: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendCourtDetails1: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizenRemoveLegalRepresentative1: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherPeopleInTheCaseRevised1: OK +2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group applicantsDetails1: OK +2026-02-06T16:26:09.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group applicantsDetails2: OK +2026-02-06T16:26:09.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders19: OK +2026-02-06T16:26:09.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders17: OK +2026-02-06T16:26:09.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders18: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsB1: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder11: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder10: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder13: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders22: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder15: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder5: OK +2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders23: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder16: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder4: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsD1: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders20: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder13: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder7: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders21: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder14: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder6: OK +2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendToGateKeeper1: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders26: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder11: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder1: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders27: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders24: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder3: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders25: OK +2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder10: OK +2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder2: OK +2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamA1: OK +2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamA2: OK +2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder9: OK +2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group caseNumber1: OK +2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder8: OK +2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder17: OK +2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherProceedings1: OK +2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentC1: OK +2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders28: OK +2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendInternationalElement1: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder22: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder23: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder20: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder21: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders30: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group barristerStopRepresenting1: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group welshLanguageRequirements1: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group addCafcassOfficer1: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments2: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments1: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ApplicantFamilyDetails1: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100listWithoutNotice1: OK +2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group awaitingInformation1: OK +2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100RequestSupport1: OK +2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherPeopleInTheCase1: OK +2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hmcCaseUpdPrepForHearing1: OK +2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ManageSupport1: OK +2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentE1: OK +2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendLitigationCapacity1: OK +2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA10: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA11: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizenAwpCreate1: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group deleteApplication1: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group confidentialityCheck1: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments4: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments3: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401SendToGateKeeper1: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorStopRepresentingLiP2: OK +2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group enableRequestSolicitorOrderTask1: OK +2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorStopRepresentingLiP1: OK +2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder8: OK +2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder7: OK +2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder6: OK +2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder5: OK +2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder9: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder4: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder2: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder1: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder5: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401Home1: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder6: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder7: OK +2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminRemoveLegalRepresentativeFL4011: OK +2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder8: OK +2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder9: OK +2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group handleEvidence1: OK +2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildrenAndOtherPeople1: OK +2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminRemoveLegalRepresentativeC1001: OK +2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendHearingUrgency1: OK +2026-02-06T16:26:09.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ManageFlags1: OK +2026-02-06T16:26:09.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageCafcassAccess1: OK +2026-02-06T16:26:09.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder10: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100CreateFlags1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401TypeOfApplication1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401TypeOfApplication2: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listOnNotice3: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allocatedJudge1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentsDetails1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentsDetails2: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listWithoutNotice1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listOnNotice1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherPeopleInTheCase1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listOnNotice2: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group addCaseNote1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group pathfinderDecision1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group statementOfService1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendHome1: OK +2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder20: OK +2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group safeguardingAndRiskOfHarm1: OK +2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherPeopleInTheCaseRevised1: OK +2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group safeguardingAndRiskOfHarm2: OK +2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group safeguardingAndRiskOfHarm3: OK +2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group internationalElement1: OK +2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder11: OK +2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder12: OK +2026-02-06T16:26:09.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetailsRevised2: OK +2026-02-06T16:26:09.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder13: OK +2026-02-06T16:26:09.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder14: OK +2026-02-06T16:26:09.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder15: OK +2026-02-06T16:26:09.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder16: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder17: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetailsRevised1: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminRemoveBarrister1: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsE1: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsC1: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildrenAndRespondents1: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherChildNotInTheCase1: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE8: OK +2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE7: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ManageFlags1: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE9: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised10: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsB1: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ReviewRARequest1: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submit2: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submit1: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementB1: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401RequestSupport1: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group returnToPreviousState1: OK +2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD3: OK +2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD2: OK +2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendApplicantsDetails1: OK +2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD5: OK +2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsE1: OK +2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD4: OK +2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD1: OK +2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentBehaviour1: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC9: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC6: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401CreateFlags1: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC5: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC8: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendApplicantsDetails2: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC7: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised11: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementA1: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401StatementOfTruthAndSubmit3: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentsDetails2: OK +2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentsDetails1: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAttendingTheHearing1: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE4: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE3: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsD1: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE6: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401StatementOfTruthAndSubmit1: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE5: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401StatementOfTruthAndSubmit2: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewAdditionalApplication1: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewAdditionalApplication2: OK +2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewAdditionalApplication3: OK +2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE2: OK +2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE1: OK +2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD7: OK +2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD6: OK +2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD9: OK +2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD8: OK +2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWelshLanguageRequirements1: OK +2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group nocRequestSingleFormPageWithComplex: OK +2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: OK +2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: OK +2026-02-06T16:26:17.829 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: UI definition: OK +2026-02-06T16:26:17.943 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.d.s.w.WorkBasketUserDefaultService Updating user profile- URL http://localhost:4453/user-profile/users +2026-02-06T16:26:18.136 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: User profiles: OK +2026-02-06T16:26:18.137 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: OK: For jurisdiction PRIVATELAW +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: preliminaryDocuments belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: preliminaryDocuments belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applications belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. +2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applications belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: witnessStatementAndEvidence belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: witnessStatementAndEvidence belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: witnessStatementAndEvidence belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: localAuthorityDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: localAuthorityDocuments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. +2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: attendingTheHearing belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: attendingTheHearing belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: attendingTheHearing belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: confidential belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. +2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. +2026-02-06T16:26:19.878 WARN [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.AsynchronousElasticDefinitionImportListener Errors initialising ElasticSearch will not fail the definition import +2026-02-06T16:26:19.892 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient alias prlapps_cases exists: true +2026-02-06T16:26:19.892 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator creating mapping for case type: PRLAPPS +2026-02-06T16:26:19.894 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator generating case properties mapping +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reference, mapping: {"type" : "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}},"analyzer": "standard", "search_analyzer": "case_id_analyzer"} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdiction, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: id, mapping: {"type" : "long"} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: state, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: created_date, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: last_modified, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: security_classification, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: case_type_id, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: last_state_modified_date, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: @timestamp, mapping: {"enabled": false} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: @version, mapping: {"enabled": false} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: index_id, mapping: {"enabled": false} +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator generating case data mapping +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteHeaderCaseName of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteLink of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepHeader of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepInfo of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmHint of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabelDetail of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbductionLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field othersConcernsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmChildContactLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudeLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeInfo of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ApplicationPaymentLinkLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabCaseNameLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabHearingUrgencyLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabApplicantDetailsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabRespondentDetailsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabDeclarationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildRevisedLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabTypeOfApplicationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmRevisedLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabMiamLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherProceedingsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabInternationalElementLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAttendingTheHearingLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLitigationCapacityLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabWelshLanguageRequirementsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmDetailsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleInTheCaseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleRevisedInTheCaseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherChildNotInTheCaseLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndApplicantsRelationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndRespondentRelationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndOtherPeopleRelationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantFamilyTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childInfoTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childToBeProtectedTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401SolicitorLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field homeDetailsTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentBehaviourTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withoutNoticeOrderTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field relationshipToRespondentTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ChildDetailsTableLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fL401ApplicationTabDeclarationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesDetails of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherExternal of type FlagLauncher ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherInternal of type FlagLauncher ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createBundleSubmitLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNext of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNextLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListReturnLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseHistory of type CaseHistoryViewer ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelPleaseUploadDocuments of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelDocumentsRequired of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelContactOrResidenceOrder of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelC8FormForConfidentiality of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelUploadOtherDocuments of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelLanguageRequirements of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAccessibility of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAdjustmentsRequired of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangements of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsDescription of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsRequired of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelIntermediaryDescription of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraConsentOrderNotification of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field natureOfOrderLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication2 of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraApplicationDetails of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbduction of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbuse of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelWhereChildrenLive of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildren of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildrenAdditionalQuestions of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherCourtCases of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheApplicants of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheRespondents of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOthersToNotify of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherChildren of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantAttendedMIAMLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field claimingExemptionMIAMLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field familyMediatorMIAMLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsSelectAll of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceSelectAll of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamChildProtectionConcernLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonSelectAll of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPreviousAttendanceLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamOtherGroundsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel1 of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage1 of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesNotAvailable of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseTypeOfApplicationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ConfidentialityDisclaimerLabel1 of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ConfidentialityDisclaimerLabel1 of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100SelectFamilyCourtLabel1 of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsAdditionalQuestionsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmHint of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabelDetail of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmOtherConcernsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmChildContactLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadApplicationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadApplicationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100draftOrderDocLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401draftOrderDocLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDeclaration of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeStmtLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeSignStmtLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPage of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPageDesc of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayFee of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplication of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplicationLinkLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100submitAndPayDownloadApplicationLinkLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPDFlinkLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceRequest of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field rejectReasonLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationLabel of type Label ignored +2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationText of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnMessageLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field localCourtHint of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo1 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo2 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo3 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo4 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo5 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo6 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo7 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo8 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hearingUrgencyLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitCountyCourtSelectionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadC2Link of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalApplicationFeesToPayText of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field componentLauncher of type ComponentLauncher ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseLinksTabTitle of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field LinkedCasesComponentLauncher of type ComponentLauncher ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsSubLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsSubLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsSubLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field recordChildrenLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDecisionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field finalOutComeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityCheckWarningText of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCourtWarning of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field deleteApplicationNote of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43Label of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43LabelBold of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCafcassOrCafcassCymruLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueCymruLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDirectionsCaseNeedsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioListLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferApplicationLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingsAndNextStepsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCaseReviewLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDecisionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocateNamedJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingPermissionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingPlaceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentBecauseLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentTimeShortenedLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedCourtLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeFirstHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeApprovedApplicationLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeNotApprovedLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraHearingDisputeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParticipationDirectionsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAttendanceAtMiamLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtToInterpretersLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUpdateContactDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationMagistrateLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDistJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationCircuitJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocatedToJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioReservedToJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFirstHearingUrgencyDetailLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedAnotherReasonLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeAnotherReasonLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedReasonLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementOtherCheckDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioMiamOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioInterpreterOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferCourtDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLetterLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioOtherLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOfPapersLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParentWithCareLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioApplicationToApplyPermissionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPreamblesLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioRightToAskCourtLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPartiesRaisedAbuseLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassOrCafcassCymruLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsCymruLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerCymruLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSectionReportOrChildImpactLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7FactsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7daOccuredLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartyToProvideDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNewPartnersToCafcassLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7CheckLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsCaseNeedsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCourtLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferApplicationLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationProhibitionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx740Label of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationQualifiedLegalLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferCourtDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationCourtCheckLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx741Label of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDocumentationAndEvidenceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpecifiedDocumentsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsFilingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpipAttendanceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDisclosureLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromGpLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsCheckLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoApplicantNameLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRespondentNameLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDiscDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPApplicantNameLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPRespondentNameLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromDiscGpLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSApplicantNameLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSRespondentNameLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolCheckLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsCheckLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisClosureProceedingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingsAndNextStepsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDecisionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingPlaceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamAttendanceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPermissionHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForDraLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSettlementConferenceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoArrangeInterpretersLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUpdateContactDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterSecondGKLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingNotNeededLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParticipationDirectionsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsForRHLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingUrgentBecauseLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraHearingDisputeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDistJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationCircuitJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationMagistratesLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoReservedToLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocatedToLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementOtherCheckDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingOtherCheckLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInterpreterOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassFileAndServeDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field safeguardingCafcassCymruDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocateOrReserveJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterGatekeepingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel2 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLetterLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoOtherLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisclosureOfPapersLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParentWithCareLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAdditionalDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoListLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPreamblesLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRightToAskCourtLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartiesRaisedAbuseLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAfterSecondGatekeepingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAddNewPreambleLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingHintText of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field previewDraftOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field instructionsToLegalRepresentativeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field yourInstructionsToLrLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openOrderAndReviewContentLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAmendedOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendedOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field blankOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404OccupationLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404nonMolestationLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field editOrderTextInstructionsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel1 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401OnNoticeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401WithOutNoticeReasonToRespondentLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withOutNoticeReasonToShareApplicantLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401RejectListWithoutNoticeHearingRequestLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeHearingInstructionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentsDetails of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessDuplicate of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitness of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentSupport of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field beforeYouStart of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field updatePayBubble of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field approveDeliveryManagerOrSeniorManager of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field Checkthehelpwithfeesapplication of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationHelpwithfeesreferenceApplicantApplication of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field listWithoutNoticeHearingInstructionLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field furtherEvidenceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field correspondenceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherDocumentsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText2 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field typeOfC21OrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21HearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder13 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel1 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel2 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21SolicitorLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addOrderDetailsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder3 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel11 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder7 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassOfficeName of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassCymruOfficeName of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel12 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createAnOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseDoableActions of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderMadeByLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field judgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCase of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrder of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkOrderRestrictionsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderRecipientsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSummaryLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSolicitorLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder1 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder5 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel2 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel3 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel4 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel5 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel7 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel6 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel8 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel9 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel10 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel13 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel14 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel19 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderHeaderLabel1 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderCheckOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder10 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel1 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel12 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsManageOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field appointedGuardianLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel20 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whenToServeOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameEditScreenLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel7 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel8 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel9 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel10 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel11 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel13 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSolicitorLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSummaryLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameDirectionsToAdminLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameInstructionsFromJudgeLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadHintLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder4 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingRequiredLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createOneHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingOptionalLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createMultipleHearingLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel19 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingRequiredLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingOptionalLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingRequiredLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingOptionalLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel15 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder2 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderDownloadOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersDocumentToAmendLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderReplaceOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersAmendedOrderLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field managerCheckAmendOrder of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel21 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveOrderAdditionalDocumentsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel22 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAdminText of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtBailiffText of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel23 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel24 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAnOrder of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messagesLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendOrReplyEventLink of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openMessageLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closedMessageLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPolicyUpgradeExemptionsLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel1 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field mpuAddEvidenceLabel of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo9 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel5 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel2 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel3 of type Label ignored +2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel4 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabApplicantsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildrenLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabRespondentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndRespondentPartiesLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesRevisedLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildNotInThePartiesLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndApplicantPartiesLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndRespondentPartiesLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndOtherPeoplePartiesLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field PaymentHistory of type CasePaymentHistoryViewer ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeOrderNameLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheRemoveOrderLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field currentStatusLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherStatusMsg of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohHint of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabelDetail of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbductionLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respOthersConcernsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAllegationsOfHarmChildContactLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseDescLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseDescLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbductionLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentOtherConcernsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAttendingTheCourtDaActLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseProvisionLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummaryHeading of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummary of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtActionHeading of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAction of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateNoHeading of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field noNeedOfPrivateDetailsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whatIsMiamLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpMiamCostsExemptionsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field responseToAllegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel1 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel2 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel3 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel4 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel5 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel6 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel7 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel8 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel9 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel10 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ResSolSubmitAndPayAgreeSignStmtLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolSuccessLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseStateLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseCourtLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseDownloadLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelA of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelB of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelC of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelD of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelE of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPdfResponseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7Response of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7ResponseLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateDisclaimer of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateReasonLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToPrivateTabLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicDisclaimer of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicReasonLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedDisclaimer of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedReasonLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToRestrictTabLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field assignedUserDetailsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnToPreviousStateLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel1 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel2 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel3 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel4 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field docToBeReviewedLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field showLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field externalMessagesHint of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesHint of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel2 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field letGateKeepersKnowLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendToGateKeeperHint of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectOrdersLabel1 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sentDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveTheseOrdersLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field automaticDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pd36qLetterLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangementsLetterLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field headerLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaHeaderLabel22 of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialDetailsArePresentBanner of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDocumentsForLaLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextCA of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextDA of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaCheckRestrictionsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaConfirmRecipientsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaOrderSentToSolicitorLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfApplicationLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedPackLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedPackLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialCheckFailedLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodSelectDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodAdditionalDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsConfCheckWarningText of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedDocumentsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ServiceRequest of type WaysToPay ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepWarningText of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepHeader of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceAddRecipientLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field summaryLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pathfinderLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field refugeLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseStatusLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityDetailsLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field urgencyLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTypeLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangmentLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderAppliedForLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabelForSummaryTab of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dateOfSubmissionLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field cafcassOfficerLabel of type Label ignored +2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndCafcassOfficers, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerPosition":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerOtherPosition":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerEmailAddress":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerPhoneNo":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: testCaseName, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteHeaderCaseNameText, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: subject, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNote, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNotes, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeLegalRepAndPartiesList, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestraining, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctive, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewDomesticBehavioursLabel of type Label ignored +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticBehaviours, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: allChildrenAreRisk, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whichChildrenAreRisk, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseBehavioursDocmosis, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false}}}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuses, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildAbductionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreats, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildrenLocationNow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionChildHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildOtherContact, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPhysicalAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPsychologicalAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childSexualAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childEmotionalAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childFinancialAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificJudgeOrLegalAdviserNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviser, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNameAndEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdviserList, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudiciary, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingUrgencyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: declarationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401TypeOfApplicationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOverviewTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOverviewTable, mapping: {"properties":{"newAllegationsOfHarmYesNo":{"enabled": false},"newAllegationsOfHarmDomesticAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbductionYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseDetails":{"enabled": false},"newAllegationsOfHarmOtherConcerns":{"enabled": false},"newAllegationsOfHarmOtherConcernsDetails":{"enabled": false}}} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeExemptionsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearingTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOrdersTable, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersNonMolestation, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nonMolestationOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOccupation, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: occupationOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: forcedMarriageProtectionOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersRestraining, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: restrainingOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOtherInjunctive, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherInjunctiveOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: undertakingInPlaceOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOrdersTable, mapping: {"properties":{"newOrdersNonMolestation":{"enabled": false},"nonMolestationOrder":{"enabled": false},"newOrdersOccupation":{"enabled": false},"occupationOrder":{"enabled": false},"newOrdersForcedMarriageProtection":{"enabled": false},"forcedMarriageProtectionOrder":{"enabled": false},"newOrdersRestraining":{"enabled": false},"restrainingOrder":{"enabled": false},"newOrdersOtherInjunctive":{"enabled": false},"otherInjunctiveOrder":{"enabled": false},"newOrdersUndertakingInPlace":{"enabled": false},"undertakingInPlaceOrder":{"enabled": false}}} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildAbductionReasons, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreats, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildrenLocationNow, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionChildHasPassport, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildAbductionTable, mapping: {"properties":{"newChildAbductionReasons":{"enabled": false},"newPreviousAbductionThreats":{"enabled": false},"newPreviousAbductionThreatsDetails":{"enabled": false},"newChildrenLocationNow":{"enabled": false},"newAbductionPassportOfficeNotified":{"enabled": false},"newAbductionPreviousPoliceInvolvement":{"enabled": false},"newAbductionPreviousPoliceInvolvementDetails":{"enabled": false},"newAbductionChildHasPassport":{"enabled": false},"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false}}} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOtherConcernsTable, mapping: {"properties":{"newAllegationsOfHarmOtherConcernsCourtActions":{"enabled": false}}} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildOtherContact, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildContactTable, mapping: {"properties":{"newAgreeChildUnsupervisedTime":{"enabled": false},"newAgreeChildSupervisedTime":{"enabled": false},"newAgreeChildOtherContact":{"enabled": false}}} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseRevisedTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildNotInTheCaseTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantsRelationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelationsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelationsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedExtraTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsExtraTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childInfoTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childToBeProtectedTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ApplicantTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401SolicitorDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withoutNoticeOrderTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RespondentTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: relationshipToRespondentTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingsDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHomeEntered, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedDATable, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: allChildrenAreRisk, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whichChildrenAreRisk, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedCATable, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awaitingInformationReasonList, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenAwpPayments, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplicationsFlag, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyList, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedBarrister, mapping: {"properties":{"partyList":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerOrg":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorFullName":{"enabled": false}}} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPageAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPagePartyName, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanCaseReference, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: scannedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: evidenceHandled, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanEnvelopes, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConfidentiality, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildInternationalElements, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReasonableAdjustments, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildTypeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingWithoutNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReturnUrl, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildMaim, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDocumentsCopy, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingUrgency, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildApplicantDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildRespondentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherChildrenDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherPersonsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantConsentMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist1, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist1, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentReferenceNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildSafetyConcerns, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildScreeningQuestions, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHelpWithFeesDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConsentOrderDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildStatementOfTruth, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildPostCode, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFeesReferenceNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noOfDaysRemainingToSubmitCase, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantPcqId, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8Document, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8DraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassDateTime, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseFlagsTaskCreated, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReviewLangAndSmReq, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isReviewLangAndSmReqReviewed, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createBundleTransitionDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bundleInformation, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtSeal, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskList, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListReturn, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: contactOrderDocumentsUploaded, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8FormDocumentsUploaded, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsUploaded, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshNeeded, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whoNeedsWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: spokenOrWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fl401SpokenOrWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshNeeds, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whoNeedsWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: spokenOrWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fl401SpokenOrWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WelshNeeds, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInterpreterNeeded, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field nameLabel of type Label ignored +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewInterpreterNeedLabel of type Label ignored +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: party, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: name, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: language, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherAssistance, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: interpreterNeeds, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"party":{"enabled": false},"name":{"enabled": false},"language":{"enabled": false},"otherAssistance":{"enabled": false}}}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDisabilityPresent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: adjustmentsRequired, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecialArrangementsRequired, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsRequired, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isIntermediaryNeeded, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForIntermediary, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersApplyingFor, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfChildArrangementsOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: natureOfOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequired, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequiredReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbduction, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safetyWelfareConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbduction, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductedBefore, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasMultiplePassports, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossession, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossessionOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolved, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolvedDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbductionReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childWhereabouts, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexually, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyStartDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysically, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyStartDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinancially, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyStartDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomestic, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticStartDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseStartDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossessionOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportDetails, mapping: {"properties":{"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false},"newChildPassportPossessionOtherDetails":{"enabled": false}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderAppliedFor, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicantsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherRespondentsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLiveWith, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: personWhoLivesWithChild, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentalResponsibilityDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isFinalOrderIssued, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: children, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenKnownToAuthority, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndLocalAuthority, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenUnderChildProtection, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenWithSameParents, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentsAndTheirChildren, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentalResponsibilities, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoChildrenLiveWith, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAddressAndAdultsLivingWith, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isExistingProceedings, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenInProceeding, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousOrOngoingProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: caseNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateStarted, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateEnded, mapping: {"enabled": false} +2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherTypeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfChildrenInvolved, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfGuardian, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameAndOffice, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadRelevantOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousOrOngoingProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: caseNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateStarted, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateEnded, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherTypeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfChildrenInvolved, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfGuardian, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameAndOffice, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadRelevantOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedingsWithDoc, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicants, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplication, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsFL401, mapping: {"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentsFL401, mapping: {"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: othersToNotify, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartyInTheCaseRevised, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderAppliedFor, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicantsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherRespondentsRelationshipToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLiveWith, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: personWhoLivesWithChild, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentalResponsibilityDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isFinalOrderIssued, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildren, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAttendedMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: claimingExemptionMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDomesticViolenceChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamChildProtectionConcernList, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamUrgencyReasonChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload1, mapping: {"enabled": false} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: consentOrder, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftConsentOrderFile, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseUrgent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseUrgencyTimeAndReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: effortsMadeWithRespondents, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouNeedAWithoutNoticeHearing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForApplicationWithoutNotice, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouRequireAHearingWithReducedNotice, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: setOutReasonsBelow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: areRespondentsAwareOfProceedings, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantCaseName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrRespondentCaseName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CaseAccessCategory, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFromCourtNav, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedCaseTypeID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTypeOfApplication, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: state, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityStatementDisclaimer, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100ConfidentialityStatementDisclaimer, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityFactors, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityReferrals, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactors, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactorsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherState, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssue, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthority, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherStateGiveReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssueGiveReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthorityGiveReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplication, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: languageRequirementApplicationNeedWelsh, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplicationNeedEnglish, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthority, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthorityTextArea, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenSubjectOfChildProtectionPlan, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: physicalAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emotionalAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: psychologicalAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sexualAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: financialAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreats, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreatsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenLocationNow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPassportOfficeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosession, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosessionOtherDetail, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvementDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionCourtStepsRequested, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field behavioursDescriptionLabel of type Label ignored +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewBehaviourLabel of type Label ignored +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursNature, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpAction, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typesOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: natureOfBehaviour, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentTypeOfHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: behaviours, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursNature":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"behavioursApplicantHelpAction":{"enabled": false},"typesOfAbuse":{"enabled": false},"natureOfBehaviour":{"enabled": false},"abuseStartDateAndLength":{"enabled": false},"respondentSoughtHelp":{"enabled": false},"respondentTypeOfHelp":{"enabled": false}}}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtection, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestraining, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctive, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlace, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsCourtActions, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildUnsupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildSupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildOtherContact, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousOrOngoingProceedingsForChildren, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: id, mapping: {"type" : "double"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: payAgreeStatement, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAgreeStatement, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: feeAmount, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFees, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: viewPDFlinkLabelText, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationLink, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestReference, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestAmount, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ccdCaseNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestStatus, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: callBackUpdateTimestamp, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentCallbackServiceRequestUpdate, mapping: {"properties":{"serviceRequestReference":{"enabled": false},"serviceRequestAmount":{"enabled": false},"ccdCaseNumber":{"enabled": false},"serviceRequestStatus":{"enabled": false},"callBackUpdateTimestamp":{"enabled": false},"payment":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentServiceRequestReferenceNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationship, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationObject, mapping: {"properties":{"applicantRelationship":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationStartAndEndComplexType, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipDate, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationDateInfoObject, mapping: {"properties":{"relationStartAndEndComplexType":{"enabled": false},"applicantRelationshipDate":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationOptionsOther, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationOptions, mapping: {"properties":{"applicantRelationshipOptions":{"enabled": false},"relationOptionsOther":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RejectReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: returnMessage, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familymanCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewEmailLabel of type Label ignored +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localCourtAdmin, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"email":{"enabled": false}}}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: idamId, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: role, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: emailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: userInfo, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"idamId":{"enabled": false},"firstName":{"enabled": false},"lastName":{"enabled": false},"role":{"enabled": false},"emailAddress":{"enabled": false}}}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseworkerEmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantSolicitorEmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: issueDate, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsConfidentialDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"address":{"enabled": false},"email":{"enabled": false},"phoneNumber":{"enabled": false}}}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPerson, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenConfidentialDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"otherPerson":{"enabled": false}}}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConfidentialDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fullName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildrenConfidentialDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false}}}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TestField, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoing, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoingToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherReasonApplicantWantToStopFromRespondentDoing, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourData, mapping: {"properties":{"applicantWantToStopFromRespondentDoing":{"enabled": false},"applicantWantToStopFromRespondentDoingToChild":{"enabled": false},"otherReasonApplicantWantToStopFromRespondentDoing":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationLinkToCA, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyDetails, mapping: {"properties":{"doesApplicantHaveChildren":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fullName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantChildRelationship, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRespondentShareParental, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentChildRelationship, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantChildDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false},"dateOfBirth":{"enabled": false},"applicantChildRelationship":{"enabled": false},"applicantRespondentShareParental":{"enabled": false},"respondentChildRelationship":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderWithoutGivingNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderWithoutGivingNoticeToRespondent, mapping: {"properties":{"orderWithoutGivingNotice":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: futherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"properties":{"reasonForOrderWithoutGivingNotice":{"enabled": false},"futherDetails":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRespondentAlreadyInBailCondition, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: bailConditionEndDate, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bailDetails, mapping: {"properties":{"isRespondentAlreadyInBailCondition":{"enabled": false},"bailConditionEndDate":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDtailsForWithoutNoticeOrder, mapping: {"properties":{"otherDetails":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressLabel of type Label ignored +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: peopleLivingAtThisAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: textAreaSomethingElse, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: everLivedAtTheAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: intendToLiveAtTheAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doAnyChildrenLiveAtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: children, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyAdapted, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: howIsThePropertyAdapted, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isThereMortgageOnProperty, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: mortgages, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyRented, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landlords, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveHomeRights, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: livingSituation, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: familyHome, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: furtherInformation, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: home, mapping: {"properties":{"address":{"enabled": false},"peopleLivingAtThisAddress":{"enabled": false},"textAreaSomethingElse":{"enabled": false},"everLivedAtTheAddress":{"enabled": false},"intendToLiveAtTheAddress":{"enabled": false},"doAnyChildrenLiveAtAddress":{"enabled": false},"children":{"enabled": false},"isPropertyAdapted":{"enabled": false},"howIsThePropertyAdapted":{"enabled": false},"isThereMortgageOnProperty":{"enabled": false},"mortgages":{"enabled": false},"isPropertyRented":{"enabled": false},"landlords":{"enabled": false},"doesApplicantHaveHomeRights":{"enabled": false},"livingSituation":{"enabled": false},"familyHome":{"enabled": false},"furtherInformation":{"enabled": false}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmitted, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimer, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruth, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNotificationSent, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtEmailFound, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDocumentGenerated, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorOrgName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitCountyCourtSelection, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrganisationPolicy, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAge, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialCourtName, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseOrigin, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasDraftOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: numberOfAttachments, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSubmittedTimeStamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmittedAndTime, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseCreatedBy, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsApplyingFor, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC2Application, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicantsList, mapping: {"enabled": false} +2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryOtherApplicationsBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryC2Document, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createdDate, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lastModifiedDate, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentDocumentType, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentType, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentRequestedByCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadedDocs, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"parentDocumentType":{"enabled": false},"documentType":{"enabled": false},"partyName":{"enabled": false},"isApplicant":{"enabled": false},"uploadedBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"cafcassDocument":{"enabled": false},"documentRequestedByCourt":{"enabled": false}}}}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAddCaseNumberAdded, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationFeesToPay, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFees, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFeesNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplications, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: representedPartyType, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListVersion, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInHearingState, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInvokedFromTask, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNonWorkAllocationEnabledCourtSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserRole, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNoteId, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TTL, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orders, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersSubmittedWithApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvedOrders, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: standardDirectionsOrder, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transcriptsOfJudgements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistratesFactsAndReasons, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesFromHearing, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: preliminaryDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: positionStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5Statements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applications, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AResponse, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedingsRes, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: MIAMCertificate, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: prevOrdersSubmittedWithAppl, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersFromOtherProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AResponse, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsFromOtherProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessStatementAndEvidence, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherWitnessStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pathfinder, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityOtherDoc, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CAFCASSReportAndGuardian, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport1, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport2, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingLetter, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section7Report, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: 16aRiskAssessment, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialGuardianshipReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocs, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section37Report, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sec37Report, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: expertReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalReports, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: DNAReports_expertReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resultsOfHairStrandBloodTests, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeDisclosures, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalRecords, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugAndAlcoholTest(toxicology), mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondentToAndFromCourt, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailsToCourt, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: publicFundingCertificates, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticesOfActingDischarge, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestForFASFormsToChange, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessAvailability, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lettersOfComplaint, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SPIPReferralRequests, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeOfficeDWPResponses, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalCorrespondence, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: impInfoAboutAddrContact, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: privacyNotice, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialMeasures, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearing, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfHearing, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtBundle, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSummary, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidential, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDoc, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrders, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseInvites, mapping: {"enabled": false} +2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: CaseReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Reason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OtherDescription, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ReasonForLink, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"Reason":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OtherDescription":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: CreatedDateTime, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: CaseType, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinks, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"CaseReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"ReasonForLink":{"properties":{"id":{"enabled": false},"value":{"properties":{"Reason":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OtherDescription":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}},"CreatedDateTime":{"type" : "date", "ignore_malformed": true},"CaseType":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: maintainCaseLinksFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinksFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderAppliedFor, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentalResponsibilityDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whoDoesTheChildLiveWith, mapping: { "properties": { "value": { "properties": { "code": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} }, "label": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} } } }, "list_items": { "type": "object", "enabled": false } } } +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isFinalOrderIssued, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"dateOfBirth":{"type" : "date", "ignore_malformed": true},"isDateOfBirthUnknown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"gender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherGender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"orderAppliedFor":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"parentalResponsibilityDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"whoDoesTheChildLiveWith":{ "properties": { "value": { "properties": { "code": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} }, "label": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} } } }, "list_items": { "type": "object", "enabled": false } } },"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndApplicantRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"applicantId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"applicantId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isChildLivesWithPersonConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOtherPeopleIdConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndOtherPeopleRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherPeopleId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isChildLivesWithPersonConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isOtherPeopleIdConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isChildLivesWithPersonConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOtherPeopleIdConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherPeopleId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isChildLivesWithPersonConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isOtherPeopleIdConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndRespondentRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"respondentId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"respondentId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenResponseC7DocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleKnowYourContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentiality, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheDecisionAboutAllChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOptionsForFinalDecision, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateFinalDecisionWasMade, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalOutcomeForChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalCaseClosedDate, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosed, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedRespondentPack, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unservedCitizenRespondentPack, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedApplicantPack, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedOthersPack, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedLaPack, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialCheckFailed, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationServedYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectionReason, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedCafcassCymruPack, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appAC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appBC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appCC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appDC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appEC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherAC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherBC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherCC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtId, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForAmendCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cantFindCourtCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transferredCourtFrom, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourtDa, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherReasonToTransferDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc1, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc2, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtNavCase, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocs, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deletionConsent, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dfjArea, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: swanseaDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: humbersideDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: essexAndSuffolkDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wolverhamptonDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isEngDocGen, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshDocGen, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: accessCodeNotifications, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollectionId, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassSafeguardingIssue, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassCymruSafeguardingIssue, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPreamblesList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingsAndNextStepsList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassOrCymruList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCourtList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioOtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFurtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationReason, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationSpecificReason, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewAtSecondGateKeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepsAllocationTo, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationIsReservedTo, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingOn, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDate, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFirstHearingUrgencyDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCourtConsider, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentTimeShortened, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentDayShortened, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentMustBeServedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingRefusedCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgencyRefusedDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraStartDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParticipationDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPerson, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPersonWhoRequiresInterpreter, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterDialectRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUpdateContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPersonName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParentWithCare, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationToApplyPermission, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioRightToAskCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPartiesRaisedAbuseCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServe, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassNextStepEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruFileAndServe, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruNextStepEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7EditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ImpactAnalysisOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7FactsEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7daOccuredEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ChildImpactAnalysis, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNameOfCouncil, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruReportSentByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7CheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7Check, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassText, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymruText, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherDirectionDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationReason, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationSpecificReason, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationSittingBeforeOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationStartDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtHavingHeard, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx740, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationQualifiedLegal, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx741, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentToCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsMaximumPages, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpecifiedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingPartiesDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpipAttendance, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHospitalRecordsDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDisclosureUploadedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpUploadedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolUploadedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsOption, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscApplicantName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpApplicantName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromDiscGpCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsApplicantName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocsEvidenceWitnessEvidence, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterSecondGK, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSecondHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAllocationTo, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCourtConsider, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentTimeShortened, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentMustBeServedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingNotNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraStartDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParticipationDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamAttendingPerson, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingOn, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraDecideBy, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraStartDateAndTime, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearingByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoJoiningInstructionsForRH, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingAllegationsMadeBy, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtHasRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllegationsDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWrittenResponseDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsAlsoSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingMaximumPages, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingHowManyWitnessEvidence, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPersonNeedsInterpreter, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterDialectRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUpdateContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNamedJudgeFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentAnotherReason, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterGatekeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateDecisionJudgeFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtRequests, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsText, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsText, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsForFactFindingHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsListText, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsListText, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityName, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTextArea, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParentWithCare, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoRightToAskCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartiesRaisedAbuseCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAfterSecondGatekeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAddNewPreambleCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAdminNotes, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToServeOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOrCymruNeedToProvideReport, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenReportsMustBeFiled, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderEndsInvolvementOfCafcassOrCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatDoWithOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrdersDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewUploadedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrderWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToEditTheOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderSolicitor, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderCourtAdmin, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsToLegalRepresentative, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalRepInstructionsPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdmin, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServe, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsFromJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderUploadedAsDraftFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderOptionType, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: makeChangesToUploadedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrAmendDirectionsFromJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedUploadOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyUploadJourney, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyDraftJourney, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectedOrdersDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editOrderTextInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalWelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFl401CaseCreatedForWithOutNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WithOutNoticeReasonToRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reducedNoticePeriodDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesList, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesFurtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantNeedsFurtherInfoDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNeedsFileStatementDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDirectionsToAdmin, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401LonOrderCompleteToServe, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ReasonsForListWithoutNoticeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401listOnNoticeHearingInstruction, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruthResubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheckResubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadWitnessDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadSupportDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNameHmctsInternal, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OtherCaseReferences, mapping: {"properties":{"id":{"enabled": false},"value":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Name, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: EmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: DateOfBirth, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: DateOfDeath, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: SearchParties, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"EmailAddress":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"DateOfBirth":{"type" : "date", "ignore_malformed": true},"DateOfDeath":{"type" : "date", "ignore_malformed": true}}}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SearchCriteria, mapping: {"properties":{"OtherCaseReferences":{"properties":{"id":{"enabled": false},"value":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"SearchParties":{"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"EmailAddress":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"DateOfBirth":{"type" : "date", "ignore_malformed": true},"DateOfDeath":{"type" : "date", "ignore_malformed": true}}}}}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementCategory, mapping: { "properties": { "value": { "properties": { "code": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} }, "label": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} } } }, "list_items": { "type": "object", "enabled": false } } } +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionId, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: region, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationId, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocation, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementLocation, mapping: {"properties":{"regionId":{"enabled": false},"region":{"enabled": false},"baseLocationId":{"enabled": false},"baseLocation":{"enabled": false},"regionName":{"enabled": false},"baseLocationName":{"enabled": false}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingId, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingStatus, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingListed, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfAppList, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfApplicationDynamicData, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: outstandingBalance, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: managerAgreedApplicationBeforePayment, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addHwfCaseNoteShort, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheCaseInDraftState, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReasonsForListOnNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAndAdditionalReasons, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingInstruction, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtList, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtCodeFromFact, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentCategoryChecklist, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherEvidences, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainApplicationDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: giveDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondence, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppDocForTabDisplay, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppNotConf, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondenceForTabDisplay, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: corrNotConf, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsForTabDisplay, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocNotConf, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsTriggeredBy, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsRestrictedFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8DocumentPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC21Order, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedC21Order, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c21OrderOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementsOrdersToIssue, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectChildArrangementsOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOfficeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createSelectOrderOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withdrawnOrRefusedOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectTypeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doesOrderClosesCase, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderByConsent, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseWithdrawn, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wasTheOrderApprovedAtHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingType, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingsType, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistratesLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: justiceLegalAdviserFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recitalsOrPreamble, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherDirectionsIfRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForTransfer, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTransferOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrderRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassRecipient, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherRecipient, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenList, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childListForSpecialGuardianship, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderHeader1, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOrderUploaded, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesOrderDocumentNeedSeal, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderTypeId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderType, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: withdrawnRequestType, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isWithdrawnRequestApproved, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesOrderClosesCase, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderDocumentWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderClosesCase, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childrenList, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isTheOrderAboutChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isTheOrderAboutAllChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serveOrderDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: manageOrderHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: judgeNotes, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: adminNotes, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sdoDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectedHearingType, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOrderCreatedBySolicitor, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfChildArrangementsOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: c21OrderOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childArrangementsOrdersToIssue, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectChildArrangementsOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childOption, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: bulkPrintOrderDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAutoHearingReqPending, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sosStatus, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fl404CustomFields, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalisationDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderCollection, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"isOrderUploaded":{"enabled": false},"doesOrderDocumentNeedSeal":{"enabled": false},"orderTypeId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"orderType":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"withdrawnRequestType":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"isWithdrawnRequestApproved":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"typeOfOrder":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"doesOrderClosesCase":{"enabled": false},"orderDocumentWelsh":{"enabled": false},"orderClosesCase":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"childrenList":{"enabled": false},"isTheOrderAboutChildren":{"enabled": false},"isTheOrderAboutAllChildren":{"enabled": false},"orderDocument":{"enabled": false},"otherDetails":{"enabled": false},"serveOrderDetails":{"enabled": false},"dateCreated":{"type" : "date", "ignore_malformed": true},"manageOrderHearingDetails":{"enabled": false},"judgeNotes":{"enabled": false},"adminNotes":{"enabled": false},"sdoDetails":{"enabled": false},"selectedHearingType":{"enabled": false},"isOrderCreatedBySolicitor":{"enabled": false},"typeOfChildArrangementsOrder":{"enabled": false},"c21OrderOptions":{"enabled": false},"childArrangementsOrdersToIssue":{"enabled": false},"selectChildArrangementsOrder":{"enabled": false},"childOption":{"enabled": false},"bulkPrintOrderDetails":{"enabled": false},"isAutoHearingReqPending":{"enabled": false},"sosStatus":{"enabled": false},"fl404CustomFields":{"enabled": false},"finalisationDetails":{"enabled": false}}}}} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName1, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName1, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantReference, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReference, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistrateLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianTextBox, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addressTheOrderAppliesTo, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404bCustomFields, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDeclares2, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeRights, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: theRespondent2, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest1, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay1, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay2, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStartTime, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEndTime, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest2, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenTheyLeave, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest3, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: moreDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest4, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest6, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionRelating, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest5, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade1, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEnds, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEndsTime, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearingTime, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName2, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOption, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ukPostcode2, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationCost, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appointedGuardianName, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404CustomFields, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderType, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateUploadOrderMade, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutAllChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daOrderForCaCase, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNeedToBeServed, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserType, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrderCreatedDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherInformationIfRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404SchoolDirections&Details, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenListForDocmosis, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDraHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasJudgeProvidedHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderName, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedHearingType, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingPageNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markedToServeEmailNotification, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingUser, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingAction, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaReviewRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForWA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSdoSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForSolicitorCreatedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForAdminCreatedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeCreatedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingTaskNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingOptionSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoApprovedTheOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isMultipleHearingSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaManagerReviewRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listElementsSetToDefaultValue, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedOrderHasDefaultCaseFields, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestSafeGuardingLetterUpdate, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeGuardingLetterUploadDueDate, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: checkForAutomatedHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalisationDetails, mapping: {"properties":{"judgeOrMagistrateTitle":{"enabled": false}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtName, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CaseNo, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402Applicant, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402ApplicantRef, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfhearing, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTime, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtname, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorOrdersHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCreatedBySolicitor, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcassCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantSolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentSolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5Present, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAutomatedHearingPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtName, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCaseNo, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicantReference, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentReference, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentDob, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingRepr, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingSolicitorCounsel, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingPerson, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingTerms, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfUnderTaking, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingDateExpiry, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryTime, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingFormSign, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDocumentToAmend, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersAmendedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectCheckOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectJudgeOrLa, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeToReviewOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaToReviewOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdminAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServeAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderAdditionalDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingOptionsForNonLegalRep, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherParties, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassServedOptions, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruServedOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailId, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrgDetailsList, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesDA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationDA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationDA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: personallyServeRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: displayLegalRepOption, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOnlyC47aOrderSelectedToServe, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeoplePresentInCaseFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptionsOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptionsOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartiesOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalOrderDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuseOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fcOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrdersOption, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderUploadedByConsent, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvalDate, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildInvolvedInMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantAttendedMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuClaimingExemptionMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuExemptionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidences, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuIsDomesticAbuseEvidenceProvided, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: domesticAbuseDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidenceDocument, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"domesticAbuseDocument":{"enabled": false}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuNoDomesticAbuseEvidenceReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildProtectionConcernReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuUrgencyReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuPreviousMiamAttendanceReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDocFromDisputeResolutionProvider, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuTypeOfPreviousMiamAttendanceEvidence, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuCertificateByMediator, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuMediatorDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuOtherExemptionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeOrganisationRequestField, mapping: {"enabled": false} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicant, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondent, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantPolicy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentPolicy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5ReminderNotifications, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5RemindersSent, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotPartInTheCaseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotInTheCase, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"gender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherGender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"isDateOfBirthKnown":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"dateOfBirth":{"type" : "date", "ignore_malformed": true}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isPathfinderCase, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tempQuarantineDocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavQuarantineDocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: document, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: document, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: historicalRefugeDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removableDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentsToBeRemoved, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrdersDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrderText, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeStatusOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reopenStateTo, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abilityToParticipateInProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohYesOrNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohDomesticAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbductionYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtection, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestraining, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctive, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlace, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceEndDate, mapping: {"type" : "date", "ignore_malformed": true} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespDomesticBehavioursLabel of type Label ignored +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respTypeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDomesticBehaviours, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"respTypeOfAbuse":{"enabled": false},"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbuses, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbductionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreats, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreatsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildrenLocationNow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPassportOfficeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvementDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionChildHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsCourtActions, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildUnsupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildSupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildOtherContact, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPhysicalAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPsychologicalAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildSexualAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildEmotionalAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildFinancialAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildHasMultiplePassports, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossession, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossessionOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPassportDetails, mapping: {"properties":{"respChildHasMultiplePassports":{"enabled": false},"respChildPassportPossession":{"enabled": false},"respChildPassportPossessionOtherDetails":{"enabled": false}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAohYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAllegationsOfHarm, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDomesticAbuseBehaviour, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbuseBehaviour, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbduction, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentOtherConcerns, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAttendingTheCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentADocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfirmEditContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConsentToApplication, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementChild, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: keepContactDetailsPrivate, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialListDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorHaveYouAttendedMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatIsMiamPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpMiamCostsExemptionsPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasRespondentAttendedMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentWillingToAttendMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReasonNotAttendingMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrPastProceedingsForChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentExistingProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmYesOrNoResponse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmWelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentResponseToAllegationOfHarm, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNameForResponse, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfidentialityDisclaimerSubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAgreeStatement, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7WelshResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorName, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListA, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListB, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListC, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListD, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListE, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7WelshResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC8ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC8ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPrivateReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToPrivateTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPublicReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsRestrictedReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSecurityClassification, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToRestrictTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: assignedUserDetailsText, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: c2DocumentBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicationsBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadedDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: author, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectedParties, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAdditionalApplicationsBundle, mapping: {"properties":{"c2DocumentBundle":{"enabled": false},"otherApplicationsBundle":{"enabled": false},"uploadedDateTime":{"enabled": false},"author":{"enabled": false},"payment":{"enabled": false},"partyType":{"enabled": false},"selectedParties":{"enabled": false}}} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAdditionalApplicationReviewed, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDocsDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDecisionYesOrNo, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docToBeReviewed, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docLabel, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: restrictedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: chooseSendOrReply, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageObject, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageContent, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: openMessages, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: closedMessages, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: externalMessageAttachDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReply, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeForSendAndReply, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messages, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondToMessage, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageObject, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sendMessageObject, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalMessageAttachDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificGateKeeperNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviserGatekeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdvisorList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: gatekeepingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationScreen1, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sentDocumentPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pd36qLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfSafetySupportLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationHeader, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalServedApplicationDetailsList, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeToRespondentOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRecipientsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherParties, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassServedOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruServedOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailId, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeoplePresentInCaseFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaIsOrderListEmpty, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: proceedToServing, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeLocalAuthorityYesOrNo, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeC8ToLocalAuthorityYesOrNo, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaDocumentDynamicListForLa, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaLaEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: missingAddressWarningText, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responsibleForService, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOccupationOrderSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicantRepresented, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: productHearingBundleOn, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confirmRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaApplicantsList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRespondentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeopleList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailOptionChecked, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailOptionChecked, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailAddressList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailAddressList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipientsList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsCheckOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodSolicitorServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodCitizenServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodUnServedPack, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servedDocumentsDetailsList, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodServeToRespondentOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: canDocumentsBeServed, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepChooseParties, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepDisclaimer, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceAddRecipient, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForApplication, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceWhatWasServed, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimerSubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationWelshLink, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeCase, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseStatus, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: urgencyDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationTypeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarm, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typesOfHarmRevised, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarmRevised, mapping: {"properties":{"typesOfHarmRevised":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangement, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: summaryTabForOrderAppliedFor, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsForSummaryTab, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfSubmission, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingEmptyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosedDate, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentServiceRequestReferenceNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentStatus, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskName, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskToBeCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpHwfRefNo, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundleId, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withDrawApplicationData, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWithdrawRequestSent, mapping: {"enabled": false} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: [STATE], mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator generating case data classification mapping +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteHeaderCaseName of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteLink of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepHeader of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepInfo of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmHint of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabelDetail of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbductionLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field othersConcernsLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmChildContactLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudeLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeInfo of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ApplicationPaymentLinkLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabCaseNameLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabHearingUrgencyLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabApplicantDetailsLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabRespondentDetailsLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabDeclarationLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildRevisedLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabTypeOfApplicationLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmRevisedLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabMiamLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherProceedingsLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabInternationalElementLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAttendingTheHearingLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLitigationCapacityLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabWelshLanguageRequirementsLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmDetailsLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleInTheCaseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleRevisedInTheCaseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherChildNotInTheCaseLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndApplicantsRelationLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndRespondentRelationLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndOtherPeopleRelationLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantFamilyTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childInfoTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childToBeProtectedTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401SolicitorLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field homeDetailsTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentBehaviourTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withoutNoticeOrderTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field relationshipToRespondentTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ChildDetailsTableLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fL401ApplicationTabDeclarationLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesDetails of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherExternal of type FlagLauncher ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherInternal of type FlagLauncher ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createBundleSubmitLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNext of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNextLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListReturnLabel of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseHistory of type CaseHistoryViewer ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelPleaseUploadDocuments of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelDocumentsRequired of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelContactOrResidenceOrder of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelC8FormForConfidentiality of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelUploadOtherDocuments of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelLanguageRequirements of type Label ignored +2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAccessibility of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAdjustmentsRequired of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangements of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsDescription of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsRequired of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelIntermediaryDescription of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraConsentOrderNotification of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field natureOfOrderLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication2 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraApplicationDetails of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbduction of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbuse of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelWhereChildrenLive of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildren of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildrenAdditionalQuestions of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherCourtCases of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheApplicants of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheRespondents of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOthersToNotify of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherChildren of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantAttendedMIAMLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field claimingExemptionMIAMLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field familyMediatorMIAMLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsSelectAll of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceSelectAll of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamChildProtectionConcernLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonSelectAll of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPreviousAttendanceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamOtherGroundsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel1 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage1 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesNotAvailable of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseTypeOfApplicationLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ConfidentialityDisclaimerLabel1 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ConfidentialityDisclaimerLabel1 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100SelectFamilyCourtLabel1 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsAdditionalQuestionsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmHint of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabelDetail of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmOtherConcernsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmChildContactLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadApplicationLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadApplicationLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100draftOrderDocLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401draftOrderDocLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDeclaration of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeStmtLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeSignStmtLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPage of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPageDesc of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayFee of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplication of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplicationLinkLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100submitAndPayDownloadApplicationLinkLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPDFlinkLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceRequest of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field rejectReasonLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationText of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnMessageLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field localCourtHint of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo1 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo2 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo3 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo4 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo5 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo6 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo7 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo8 of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hearingUrgencyLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitCountyCourtSelectionLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadC2Link of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalApplicationFeesToPayText of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field componentLauncher of type ComponentLauncher ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseLinksTabTitle of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field LinkedCasesComponentLauncher of type ComponentLauncher ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsSubLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsSubLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsSubLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field recordChildrenLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDecisionLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field finalOutComeLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityCheckWarningText of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCourtWarning of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field deleteApplicationNote of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43Label of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43LabelBold of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCafcassOrCafcassCymruLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueCymruLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDirectionsCaseNeedsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioListLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferApplicationLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingsAndNextStepsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCaseReviewLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDecisionLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocateNamedJudgeLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingPermissionLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingPlaceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentBecauseLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentTimeShortenedLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedCourtLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeFirstHearingLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeApprovedApplicationLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeNotApprovedLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraHearingDisputeLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParticipationDirectionsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAttendanceAtMiamLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtToInterpretersLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUpdateContactDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationMagistrateLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDistJudgeLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationCircuitJudgeLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocatedToJudgeLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioReservedToJudgeLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFirstHearingUrgencyDetailLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedAnotherReasonLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeAnotherReasonLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedReasonLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementOtherCheckDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioMiamOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioInterpreterOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferCourtDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLetterLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioOtherLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOfPapersLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParentWithCareLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioApplicationToApplyPermissionLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPreamblesLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioRightToAskCourtLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPartiesRaisedAbuseLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassOrCafcassCymruLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsCymruLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerCymruLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSectionReportOrChildImpactLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7FactsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7daOccuredLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartyToProvideDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNewPartnersToCafcassLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7CheckLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsCaseNeedsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCourtLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferApplicationLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationProhibitionLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx740Label of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationQualifiedLegalLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferCourtDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationCourtCheckLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx741Label of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDocumentationAndEvidenceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpecifiedDocumentsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsFilingLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpipAttendanceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDisclosureLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromGpLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsCheckLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoApplicantNameLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRespondentNameLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDiscDetailsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPApplicantNameLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPRespondentNameLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromDiscGpLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSApplicantNameLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSRespondentNameLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolCheckLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsCheckLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisClosureProceedingLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingsAndNextStepsLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDecisionLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingPlaceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamAttendanceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPermissionHearingLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForDraLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSettlementConferenceLabel of type Label ignored +2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoArrangeInterpretersLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUpdateContactDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterSecondGKLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingNotNeededLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParticipationDirectionsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsForRHLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingUrgentBecauseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraHearingDisputeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDistJudgeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationCircuitJudgeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationMagistratesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoReservedToLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocatedToLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementOtherCheckDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingOtherCheckLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInterpreterOtherDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassFileAndServeDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field safeguardingCafcassCymruDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocateOrReserveJudgeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterGatekeepingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel2 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLetterLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoOtherLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisclosureOfPapersLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParentWithCareLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAdditionalDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoListLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPreamblesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRightToAskCourtLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartiesRaisedAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAfterSecondGatekeepingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAddNewPreambleLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingHintText of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field previewDraftOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field instructionsToLegalRepresentativeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field yourInstructionsToLrLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openOrderAndReviewContentLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAmendedOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendedOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field blankOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404OccupationLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404nonMolestationLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field editOrderTextInstructionsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel1 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401OnNoticeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401WithOutNoticeReasonToRespondentLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withOutNoticeReasonToShareApplicantLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401RejectListWithoutNoticeHearingRequestLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeHearingInstructionLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentsDetails of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessDuplicate of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitness of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentSupport of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field beforeYouStart of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field updatePayBubble of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field approveDeliveryManagerOrSeniorManager of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field Checkthehelpwithfeesapplication of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationHelpwithfeesreferenceApplicantApplication of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field listWithoutNoticeHearingInstructionLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field furtherEvidenceLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field correspondenceLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherDocumentsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText2 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field typeOfC21OrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21HearingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder13 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel1 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel2 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21SolicitorLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addOrderDetailsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder3 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel11 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder7 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassOfficeName of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassCymruOfficeName of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel12 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createAnOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseDoableActions of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderMadeByLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field judgeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCase of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrder of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkOrderRestrictionsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderRecipientsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderHearingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSummaryLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSolicitorLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder1 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder5 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel2 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel3 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel4 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel5 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel7 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel6 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel8 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel9 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel10 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel13 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel14 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel19 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderHeaderLabel1 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderCheckOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder10 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel1 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel12 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsManageOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field appointedGuardianLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel20 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whenToServeOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameEditScreenLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel7 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel8 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel9 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel10 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel11 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel13 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSolicitorLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSummaryLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameHearingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameDirectionsToAdminLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameInstructionsFromJudgeLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadHintLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder4 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingRequiredLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createOneHearingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingOptionalLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createMultipleHearingLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel19 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingRequiredLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingOptionalLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingRequiredLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingOptionalLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel15 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder2 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderDownloadOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersDocumentToAmendLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderReplaceOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersAmendedOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field managerCheckAmendOrder of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel21 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveOrderAdditionalDocumentsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel22 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAdminText of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtBailiffText of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel23 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel24 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAnOrder of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messagesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendOrReplyEventLink of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openMessageLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closedMessageLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPolicyUpgradeExemptionsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel1 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field mpuAddEvidenceLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo9 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel5 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel2 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel3 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel4 of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabApplicantsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildrenLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabRespondentsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndRespondentPartiesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesRevisedLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildNotInThePartiesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndApplicantPartiesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndRespondentPartiesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndOtherPeoplePartiesLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field PaymentHistory of type CasePaymentHistoryViewer ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeOrderNameLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheRemoveOrderLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field currentStatusLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherStatusMsg of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohHint of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabelDetail of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbductionLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respOthersConcernsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursSubLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAllegationsOfHarmChildContactLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseSubLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseDescLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseDescLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbductionLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentOtherConcernsLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAttendingTheCourtDaActLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseProvisionLabel of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummaryHeading of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummary of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtActionHeading of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAction of type Label ignored +2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateNoHeading of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field noNeedOfPrivateDetailsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whatIsMiamLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpMiamCostsExemptionsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field responseToAllegationsOfHarmLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel1 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel2 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel3 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel4 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel5 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel6 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel7 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel8 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel9 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel10 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ResSolSubmitAndPayAgreeSignStmtLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolSuccessLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseStateLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseCourtLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseDownloadLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelA of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelB of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelC of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelD of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelE of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPdfResponseLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7Response of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7ResponseLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateDisclaimer of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateReasonLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToPrivateTabLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicDisclaimer of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicReasonLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedDisclaimer of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedReasonLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToRestrictTabLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field assignedUserDetailsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnToPreviousStateLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel1 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel2 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel3 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel4 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field docToBeReviewedLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field showLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field externalMessagesHint of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesHint of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel2 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field letGateKeepersKnowLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendToGateKeeperHint of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectOrdersLabel1 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sentDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveTheseOrdersLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field automaticDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pd36qLetterLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangementsLetterLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field headerLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaHeaderLabel22 of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialDetailsArePresentBanner of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDocumentsForLaLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextCA of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextDA of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaCheckRestrictionsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaConfirmRecipientsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaOrderSentToSolicitorLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfApplicationLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedPackLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedPackLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialCheckFailedLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodSelectDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodAdditionalDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsConfCheckWarningText of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedDocumentsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ServiceRequest of type WaysToPay ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepWarningText of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepHeader of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceAddRecipientLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field summaryLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pathfinderLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field refugeLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseStatusLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityDetailsLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field urgencyLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTypeLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangmentLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderAppliedForLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabelForSummaryTab of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dateOfSubmissionLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field cafcassOfficerLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndCafcassOfficers, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"childId":{"type" : "keyword"},"childName":{"type" : "keyword"},"cafcassOfficerName":{"type" : "keyword"},"cafcassOfficerPosition":{"type" : "keyword"},"cafcassOfficerOtherPosition":{"type" : "keyword"},"cafcassOfficerEmailAddress":{"type" : "keyword"},"cafcassOfficerPhoneNo":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: testCaseName, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteHeaderCaseNameText, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: subject, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNote, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNotes, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteTable, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeLegalRepAndPartiesList, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestraining, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctive, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewDomesticBehavioursLabel of type Label ignored +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticBehaviours, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseBehavioursDocmosis, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false}}}}}}} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuses, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildAbductionReasons, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreats, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildrenLocationNow, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionChildHasPassport, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildOtherContact, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPhysicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPsychologicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childSexualAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childEmotionalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childFinancialAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificJudgeOrLegalAdviserNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviser, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNameAndEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdviserList, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudiciary, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingUrgencyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: declarationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401TypeOfApplicationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOverviewTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOverviewTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newAllegationsOfHarmYesNo":{"enabled": false},"newAllegationsOfHarmDomesticAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbductionYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseDetails":{"enabled": false},"newAllegationsOfHarmOtherConcerns":{"enabled": false},"newAllegationsOfHarmOtherConcernsDetails":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeExemptionsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearingTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOrdersTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersNonMolestation, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nonMolestationOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOccupation, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: occupationOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: forcedMarriageProtectionOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersRestraining, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: restrainingOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOtherInjunctive, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherInjunctiveOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: undertakingInPlaceOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOrdersTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newOrdersNonMolestation":{"enabled": false},"nonMolestationOrder":{"enabled": false},"newOrdersOccupation":{"enabled": false},"occupationOrder":{"enabled": false},"newOrdersForcedMarriageProtection":{"enabled": false},"forcedMarriageProtectionOrder":{"enabled": false},"newOrdersRestraining":{"enabled": false},"restrainingOrder":{"enabled": false},"newOrdersOtherInjunctive":{"enabled": false},"otherInjunctiveOrder":{"enabled": false},"newOrdersUndertakingInPlace":{"enabled": false},"undertakingInPlaceOrder":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildAbductionReasons, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreats, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildrenLocationNow, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionChildHasPassport, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildAbductionTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newChildAbductionReasons":{"enabled": false},"newPreviousAbductionThreats":{"enabled": false},"newPreviousAbductionThreatsDetails":{"enabled": false},"newChildrenLocationNow":{"enabled": false},"newAbductionPassportOfficeNotified":{"enabled": false},"newAbductionPreviousPoliceInvolvement":{"enabled": false},"newAbductionPreviousPoliceInvolvementDetails":{"enabled": false},"newAbductionChildHasPassport":{"enabled": false},"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOtherConcernsTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newAllegationsOfHarmOtherConcernsCourtActions":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildOtherContact, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildContactTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newAgreeChildUnsupervisedTime":{"enabled": false},"newAgreeChildSupervisedTime":{"enabled": false},"newAgreeChildOtherContact":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseRevisedTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildNotInTheCaseTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantsRelationTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelationsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelationsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedExtraTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsExtraTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childInfoTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childToBeProtectedTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ApplicantTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401SolicitorDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withoutNoticeOrderTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RespondentTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: relationshipToRespondentTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingsDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHomeEntered, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildDetailsTable, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedDATable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedCATable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awaitingInformationReasonList, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenAwpPayments, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplicationsFlag, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyList, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedBarrister, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"partyList":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerOrg":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorFullName":{"enabled": false}}}}} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPageAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPagePartyName, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanCaseReference, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: scannedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: evidenceHandled, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanEnvelopes, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConfidentiality, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildInternationalElements, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReasonableAdjustments, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildTypeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingWithoutNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReturnUrl, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildMaim, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDocumentsCopy, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingUrgency, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildApplicantDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildRespondentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherChildrenDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherPersonsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantConsentMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist1, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist1, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentReferenceNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildSafetyConcerns, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildScreeningQuestions, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHelpWithFeesDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConsentOrderDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildStatementOfTruth, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildPostCode, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFeesReferenceNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noOfDaysRemainingToSubmitCase, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantPcqId, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8Document, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8DraftDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassDateTime, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5InternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5ExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseFlagsTaskCreated, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerExternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorInternalFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReviewLangAndSmReq, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isReviewLangAndSmReqReviewed, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createBundleTransitionDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bundleInformation, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtSeal, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskList, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListReturn, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: contactOrderDocumentsUploaded, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8FormDocumentsUploaded, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsUploaded, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshNeeded, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshNeeds, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WelshNeeds, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInterpreterNeeded, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field nameLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewInterpreterNeedLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: interpreterNeeds, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"party":{"enabled": false},"name":{"enabled": false},"language":{"enabled": false},"otherAssistance":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDisabilityPresent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: adjustmentsRequired, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecialArrangementsRequired, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsRequired, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isIntermediaryNeeded, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForIntermediary, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersApplyingFor, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfChildArrangementsOrder, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: natureOfOrder, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequired, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequiredReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuse, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbduction, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuse, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safetyWelfareConcerns, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbduction, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeNotified, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasPassport, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductedBefore, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasMultiplePassports, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossession, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossessionOtherDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolved, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolvedDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbductionReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childWhereabouts, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexually, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyStartDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyOngoing, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyHelpSought, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysically, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyStartDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyOngoing, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyHelpSought, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinancially, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyStartDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyOngoing, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyHelpSought, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomestic, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticStartDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticOngoing, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticHelpSought, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseStartDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseOngoing, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseHelpSought, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcerns, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcernsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenAddress, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossessionOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false},"newChildPassportPossessionOtherDetails":{"enabled": false}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: children, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenKnownToAuthority, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndLocalAuthority, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenUnderChildProtection, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenWithSameParents, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentsAndTheirChildren, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentalResponsibilities, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoChildrenLiveWith, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAddressAndAdultsLivingWith, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isExistingProceedings, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenInProceeding, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedingsWithDoc, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicants, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplication, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsFL401, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} +2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentsFL401, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: othersToNotify, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartyInTheCaseRevised, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildren, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAttendedMiam, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: claimingExemptionMiam, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorMiam, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsChecklist, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDomesticViolenceChecklist, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamChildProtectionConcernList, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamUrgencyReasonChecklist, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload1, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: consentOrder, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftConsentOrderFile, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseUrgent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseUrgencyTimeAndReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: effortsMadeWithRespondents, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouNeedAWithoutNoticeHearing, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForApplicationWithoutNotice, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouRequireAHearingWithReducedNotice, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: setOutReasonsBelow, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: areRespondentsAwareOfProceedings, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantCaseName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrRespondentCaseName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CaseAccessCategory, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFromCourtNav, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedCaseTypeID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTypeOfApplication, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: state, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityStatementDisclaimer, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100ConfidentialityStatementDisclaimer, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityFactors, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityReferrals, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactors, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactorsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherState, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssue, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthority, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherStateGiveReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssueGiveReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthorityGiveReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirement, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplication, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: languageRequirementApplicationNeedWelsh, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplicationNeedEnglish, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthority, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthorityTextArea, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenSubjectOfChildProtectionPlan, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: physicalAbuseVictim, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emotionalAbuseVictim, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: psychologicalAbuseVictim, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sexualAbuseVictim, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: financialAbuseVictim, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionReasons, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreats, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreatsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenLocationNow, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPassportOfficeNotified, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildHasPassport, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosession, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosessionOtherDetail, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvement, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvementDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcerns, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcernsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionCourtStepsRequested, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field behavioursDescriptionLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewBehaviourLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: behaviours, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursNature":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"behavioursApplicantHelpAction":{"enabled": false},"typesOfAbuse":{"enabled": false},"natureOfBehaviour":{"enabled": false},"abuseStartDateAndLength":{"enabled": false},"respondentSoughtHelp":{"enabled": false},"respondentTypeOfHelp":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtection, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestraining, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctive, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlace, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcerns, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsCourtActions, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildUnsupervisedTime, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildSupervisedTime, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildOtherContact, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousOrOngoingProceedingsForChildren, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: id, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: payAgreeStatement, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAgreeStatement, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: feeAmount, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFees, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: viewPDFlinkLabelText, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationLink, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestReference, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestAmount, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ccdCaseNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestStatus, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: callBackUpdateTimestamp, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentCallbackServiceRequestUpdate, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"serviceRequestReference":{"enabled": false},"serviceRequestAmount":{"enabled": false},"ccdCaseNumber":{"enabled": false},"serviceRequestStatus":{"enabled": false},"callBackUpdateTimestamp":{"enabled": false},"payment":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentServiceRequestReferenceNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationship, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationObject, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"applicantRelationship":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationStartAndEndComplexType, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipDate, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationDateInfoObject, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"relationStartAndEndComplexType":{"enabled": false},"applicantRelationshipDate":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationOptionsOther, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationOptions, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"applicantRelationshipOptions":{"enabled": false},"relationOptionsOther":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RejectReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: returnMessage, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familymanCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewEmailLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localCourtAdmin, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"email":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: userInfo, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"idamId":{"enabled": false},"firstName":{"enabled": false},"lastName":{"enabled": false},"role":{"enabled": false},"emailAddress":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseworkerEmailAddress, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantSolicitorEmailAddress, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: issueDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsConfidentialDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"address":{"enabled": false},"email":{"enabled": false},"phoneNumber":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenConfidentialDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"otherPerson":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConfidentialDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildrenConfidentialDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TestField, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoing, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoingToChild, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherReasonApplicantWantToStopFromRespondentDoing, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourData, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"applicantWantToStopFromRespondentDoing":{"enabled": false},"applicantWantToStopFromRespondentDoingToChild":{"enabled": false},"otherReasonApplicantWantToStopFromRespondentDoing":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationLinkToCA, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"doesApplicantHaveChildren":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantChildDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false},"dateOfBirth":{"enabled": false},"applicantChildRelationship":{"enabled": false},"applicantRespondentShareParental":{"enabled": false},"respondentChildRelationship":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderWithoutGivingNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderWithoutGivingNoticeToRespondent, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"orderWithoutGivingNotice":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: futherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"reasonForOrderWithoutGivingNotice":{"enabled": false},"futherDetails":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRespondentAlreadyInBailCondition, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: bailConditionEndDate, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bailDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"isRespondentAlreadyInBailCondition":{"enabled": false},"bailConditionEndDate":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDtailsForWithoutNoticeOrder, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"otherDetails":{"enabled": false}}}}} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressLabel of type Label ignored +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: peopleLivingAtThisAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: textAreaSomethingElse, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: everLivedAtTheAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: intendToLiveAtTheAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doAnyChildrenLiveAtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: children, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyAdapted, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: howIsThePropertyAdapted, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isThereMortgageOnProperty, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: mortgages, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyRented, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landlords, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveHomeRights, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: livingSituation, mapping: {"enabled": false} +2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: familyHome, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: furtherInformation, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: home, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"address":{"enabled": false},"peopleLivingAtThisAddress":{"enabled": false},"textAreaSomethingElse":{"enabled": false},"everLivedAtTheAddress":{"enabled": false},"intendToLiveAtTheAddress":{"enabled": false},"doAnyChildrenLiveAtAddress":{"enabled": false},"children":{"enabled": false},"isPropertyAdapted":{"enabled": false},"howIsThePropertyAdapted":{"enabled": false},"isThereMortgageOnProperty":{"enabled": false},"mortgages":{"enabled": false},"isPropertyRented":{"enabled": false},"landlords":{"enabled": false},"doesApplicantHaveHomeRights":{"enabled": false},"livingSituation":{"enabled": false},"familyHome":{"enabled": false},"furtherInformation":{"enabled": false}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmitted, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimer, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruth, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNotificationSent, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtEmailFound, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorName, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDocumentGenerated, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorOrgName, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitCountyCourtSelection, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrganisationPolicy, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAge, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialCourtName, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseOrigin, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasDraftOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: numberOfAttachments, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSubmittedTimeStamp, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmittedAndTime, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseCreatedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsApplyingFor, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC2Application, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicantsList, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryOtherApplicationsBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryC2Document, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFlags, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createdDate, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lastModifiedDate, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadedDocs, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"parentDocumentType":{"enabled": false},"documentType":{"enabled": false},"partyName":{"enabled": false},"isApplicant":{"enabled": false},"uploadedBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"cafcassDocument":{"enabled": false},"documentRequestedByCourt":{"enabled": false}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAddCaseNumberAdded, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationFeesToPay, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFees, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFeesNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplications, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: representedPartyType, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListVersion, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInHearingState, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInvokedFromTask, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNonWorkAllocationEnabledCourtSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantContactInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserRole, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNoteId, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TTL, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orders, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersSubmittedWithApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvedOrders, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: standardDirectionsOrder, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transcriptsOfJudgements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistratesFactsAndReasons, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesFromHearing, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: preliminaryDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: positionStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5Statements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applications, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AResponse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedingsRes, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: MIAMCertificate, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: prevOrdersSubmittedWithAppl, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersFromOtherProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AResponse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsFromOtherProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessStatementAndEvidence, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherWitnessStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pathfinder, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityOtherDoc, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CAFCASSReportAndGuardian, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport1, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport2, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingLetter, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section7Report, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: 16aRiskAssessment, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialGuardianshipReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocs, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section37Report, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sec37Report, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: expertReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalReports, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: DNAReports_expertReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resultsOfHairStrandBloodTests, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeDisclosures, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalRecords, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugAndAlcoholTest(toxicology), mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondentToAndFromCourt, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailsToCourt, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: publicFundingCertificates, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticesOfActingDischarge, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestForFASFormsToChange, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessAvailability, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lettersOfComplaint, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SPIPReferralRequests, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeOfficeDWPResponses, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalCorrespondence, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: impInfoAboutAddrContact, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: privacyNotice, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialMeasures, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearing, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfHearing, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtBundle, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSummary, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidential, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDoc, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrders, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseInvites, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinks, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"CaseReference":{"type" : "keyword"},"ReasonForLink":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"Reason":{"type" : "keyword"},"OtherDescription":{"type" : "keyword"}}}}}}},"CreatedDateTime":{"type" : "keyword"},"CaseType":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: maintainCaseLinksFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinksFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"},"dateOfBirth":{"type" : "keyword"},"isDateOfBirthUnknown":{"type" : "keyword"},"gender":{"type" : "keyword"},"otherGender":{"type" : "keyword"},"orderAppliedFor":{"type" : "keyword"},"parentalResponsibilityDetails":{"type" : "keyword"},"whoDoesTheChildLiveWith":{"type" : "keyword"},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndApplicantRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type" : "keyword"},"applicantId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childId":{"type" : "keyword"},"childAndApplicantRelation":{"type" : "keyword"},"childAndApplicantRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type" : "keyword"},"applicantId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childId":{"type" : "keyword"},"childAndApplicantRelation":{"type" : "keyword"},"childAndApplicantRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndOtherPeopleRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type" : "keyword"},"otherPeopleId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndOtherPeopleRelation":{"type" : "keyword"},"childAndOtherPeopleRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"},"isChildLivesWithPersonConfidential":{"type" : "keyword"},"isOtherPeopleIdConfidential":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type" : "keyword"},"otherPeopleId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndOtherPeopleRelation":{"type" : "keyword"},"childAndOtherPeopleRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"},"isChildLivesWithPersonConfidential":{"type" : "keyword"},"isOtherPeopleIdConfidential":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndRespondentRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type" : "keyword"},"respondentId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndRespondentRelation":{"type" : "keyword"},"childAndRespondentRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type" : "keyword"},"respondentId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndRespondentRelation":{"type" : "keyword"},"childAndRespondentRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenResponseC7DocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleKnowYourContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentiality, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityList, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheDecisionAboutAllChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOptionsForFinalDecision, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateFinalDecisionWasMade, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalOutcomeForChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalCaseClosedDate, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosed, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedRespondentPack, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unservedCitizenRespondentPack, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedApplicantPack, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedOthersPack, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedLaPack, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialCheckFailed, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationServedYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectionReason, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedCafcassCymruPack, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8EngDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8WelDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appAC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appBC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appCC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appDC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appEC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherAC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherBC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherCC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEC8RefugeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtId, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForAmendCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cantFindCourtCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transferredCourtFrom, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourtDa, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherReasonToTransferDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc1, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc2, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtNavCase, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocs, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deletionConsent, mapping: {"enabled": false} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dfjArea, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: swanseaDFJCourt, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: humbersideDFJCourt, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: essexAndSuffolkDFJCourt, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wolverhamptonDFJCourt, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isEngDocGen, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshDocGen, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: accessCodeNotifications, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollectionId, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassSafeguardingIssue, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassCymruSafeguardingIssue, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPreamblesList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingsAndNextStepsList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassOrCymruList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCourtList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioOtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFurtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationReason, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationSpecificReason, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewAtSecondGateKeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepsAllocationTo, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationIsReservedTo, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingOn, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFirstHearingUrgencyDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCourtConsider, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentTimeShortened, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentDayShortened, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentMustBeServedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingRefusedCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgencyRefusedDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraStartDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParticipationDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPerson, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPersonWhoRequiresInterpreter, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterDialectRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUpdateContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPersonName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParentWithCare, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationToApplyPermission, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioRightToAskCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPartiesRaisedAbuseCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServe, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassNextStepEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruFileAndServe, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruNextStepEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7EditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ImpactAnalysisOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7FactsEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7daOccuredEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ChildImpactAnalysis, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNameOfCouncil, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruReportSentByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7CheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7Check, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassText, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymruText, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherTempList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherDirectionDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationReason, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationSpecificReason, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEditContent, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationSittingBeforeOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationStartDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtHavingHeard, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx740, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationQualifiedLegal, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx741, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentToCafcass, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsMaximumPages, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpecifiedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingPartiesDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpipAttendance, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHospitalRecordsDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDisclosureUploadedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpUploadedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolUploadedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsOption, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscApplicantName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpApplicantName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromDiscGpCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsApplicantName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocsEvidenceWitnessEvidence, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterSecondGK, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSecondHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAllocationTo, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCheckList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCourtConsider, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentTimeShortened, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentMustBeServedBy, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingNotNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraStartDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParticipationDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementWritten, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamAttendingPerson, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingOn, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingBeforeAList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraDecideBy, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraStartDateAndTime, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearingByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceCourtDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceByWayOf, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoJoiningInstructionsForRH, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingAllegationsMadeBy, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtHasRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllegationsDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWrittenResponseDeadlineDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsAlsoSentTo, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingMaximumPages, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingHowManyWitnessEvidence, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPersonNeedsInterpreter, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterDialectRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUpdateContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNamedJudgeFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherCheckDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetailsCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentAnotherReason, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterGatekeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateDecisionJudgeFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtRequests, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsText, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsText, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsForFactFindingHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsListText, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsListText, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityName, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTextArea, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityCheck, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParentWithCare, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoRightToAskCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartiesRaisedAbuseCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAfterSecondGatekeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAddNewPreambleCollection, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAdminNotes, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToServeOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOrCymruNeedToProvideReport, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenReportsMustBeFiled, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderEndsInvolvementOfCafcassOrCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatDoWithOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrdersDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewUploadedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrderWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToEditTheOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderSolicitor, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderCourtAdmin, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsToLegalRepresentative, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalRepInstructionsPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdmin, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServe, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsFromJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderUploadedAsDraftFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderOptionType, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: makeChangesToUploadedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrAmendDirectionsFromJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedUploadOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyUploadJourney, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyDraftJourney, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectedOrdersDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editOrderTextInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalWelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFl401CaseCreatedForWithOutNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WithOutNoticeReasonToRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reducedNoticePeriodDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesList, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesFurtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantNeedsFurtherInfoDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNeedsFileStatementDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDirectionsToAdmin, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401LonOrderCompleteToServe, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ReasonsForListWithoutNoticeRequested, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401listOnNoticeHearingInstruction, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruthResubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheckResubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadWitnessDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadSupportDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNameHmctsInternal, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OtherCaseReferences, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: SearchParties, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type" : "keyword"},"EmailAddress":{"type" : "keyword"},"AddressLine1":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"DateOfBirth":{"type" : "keyword"},"DateOfDeath":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SearchCriteria, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OtherCaseReferences":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}},"SearchParties":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type" : "keyword"},"EmailAddress":{"type" : "keyword"},"AddressLine1":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"DateOfBirth":{"type" : "keyword"},"DateOfDeath":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementCategory, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionId, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: region, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationId, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocation, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementLocation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"regionId":{"enabled": false},"region":{"enabled": false},"baseLocationId":{"enabled": false},"baseLocation":{"enabled": false},"regionName":{"enabled": false},"baseLocationName":{"enabled": false}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingId, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingStatus, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingListed, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfAppList, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfApplicationDynamicData, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: outstandingBalance, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: managerAgreedApplicationBeforePayment, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addHwfCaseNoteShort, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheCaseInDraftState, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudge, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReasonsForListOnNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAndAdditionalReasons, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingInstruction, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtList, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtCodeFromFact, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentCategoryChecklist, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherEvidences, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainApplicationDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: giveDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondence, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppDocForTabDisplay, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppNotConf, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondenceForTabDisplay, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: corrNotConf, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsForTabDisplay, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocNotConf, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsTriggeredBy, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsRestrictedFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8DocumentPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC21Order, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedC21Order, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c21OrderOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementsOrdersToIssue, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectChildArrangementsOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOfficeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createSelectOrderOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withdrawnOrRefusedOrder, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectTypeOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doesOrderClosesCase, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderByConsent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseWithdrawn, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wasTheOrderApprovedAtHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingType, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingsType, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistratesLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: justiceLegalAdviserFullName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recitalsOrPreamble, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderDirections, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherDirectionsIfRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForTransfer, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTransferOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrderRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassRecipient, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherRecipient, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenList, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childListForSpecialGuardianship, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderHeader1, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderCollection, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"isOrderUploaded":{"enabled": false},"doesOrderDocumentNeedSeal":{"enabled": false},"orderTypeId":{"type" : "keyword"},"orderType":{"type" : "keyword"},"withdrawnRequestType":{"type" : "keyword"},"isWithdrawnRequestApproved":{"type" : "keyword"},"typeOfOrder":{"type" : "keyword"},"doesOrderClosesCase":{"enabled": false},"orderDocumentWelsh":{"enabled": false},"orderClosesCase":{"type" : "keyword"},"childrenList":{"enabled": false},"isTheOrderAboutChildren":{"enabled": false},"isTheOrderAboutAllChildren":{"enabled": false},"orderDocument":{"enabled": false},"otherDetails":{"enabled": false},"serveOrderDetails":{"enabled": false},"dateCreated":{"type" : "keyword"},"manageOrderHearingDetails":{"enabled": false},"judgeNotes":{"enabled": false},"adminNotes":{"enabled": false},"sdoDetails":{"enabled": false},"selectedHearingType":{"enabled": false},"isOrderCreatedBySolicitor":{"enabled": false},"typeOfChildArrangementsOrder":{"enabled": false},"c21OrderOptions":{"enabled": false},"childArrangementsOrdersToIssue":{"enabled": false},"selectChildArrangementsOrder":{"enabled": false},"childOption":{"enabled": false},"bulkPrintOrderDetails":{"enabled": false},"isAutoHearingReqPending":{"enabled": false},"sosStatus":{"enabled": false},"fl404CustomFields":{"enabled": false},"finalisationDetails":{"enabled": false}}}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName1, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNumber, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName1, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantReference, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReference, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRespondentName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistrateLastName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianTextBox, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDateOfBirth, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addressTheOrderAppliesTo, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404bCustomFields, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDeclares2, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeRights, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantInstructions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: theRespondent2, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest1, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay1, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay2, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStartTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEndTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest2, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenTheyLeave, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest3, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: moreDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest4, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest6, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionRelating, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest5, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade1, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEnds, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEndsTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearingTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName2, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOption, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ukPostcode2, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationCost, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNotice, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appointedGuardianName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404CustomFields, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderType, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateUploadOrderMade, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutAllChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daOrderForCaCase, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNeedToBeServed, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserType, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrderCreatedDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherInformationIfRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404SchoolDirections&Details, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenListForDocmosis, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDraHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasJudgeProvidedHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedHearingType, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingPageNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markedToServeEmailNotification, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingUser, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingAction, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaReviewRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForWA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSdoSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForSolicitorCreatedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForAdminCreatedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeCreatedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingTaskNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingOptionSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderApproved, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoApprovedTheOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isMultipleHearingSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaManagerReviewRequired, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listElementsSetToDefaultValue, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedOrderHasDefaultCaseFields, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestSafeGuardingLetterUpdate, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeGuardingLetterUploadDueDate, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: checkForAutomatedHearing, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalisationDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"judgeOrMagistrateTitle":{"enabled": false}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CaseNo, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402Applicant, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402ApplicantRef, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfhearing, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTimeEstimate, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtname, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorOrdersHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCreatedBySolicitor, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcassCymru, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantSolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentSolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5Present, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5SolicitorPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAutomatedHearingPresent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtName, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCaseNo, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicant, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicantReference, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentReference, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentDob, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingRepr, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingSolicitorCounsel, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingPerson, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingTerms, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfUnderTaking, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingDateExpiry, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryTime, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingFormSign, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDocumentToAmend, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersAmendedOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectCheckOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectJudgeOrLa, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeToReviewOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaToReviewOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdminAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServeAmendOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderAdditionalDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingOptionsForNonLegalRep, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherParties, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassServedOptions, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruServedOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailId, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrgDetailsList, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesDA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationDA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationDA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: personallyServeRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: displayLegalRepOption, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOnlyC47aOrderSelectedToServe, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeoplePresentInCaseFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptionsOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptionsOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartiesOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCaOnlyC47a, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalOrderDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuseOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fcOrders, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrdersOption, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderUploadedByConsent, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvalDate, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrderDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildInvolvedInMiam, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantAttendedMiam, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuClaimingExemptionMiam, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuExemptionReasons, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidences, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuIsDomesticAbuseEvidenceProvided, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidenceDocument, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"domesticAbuseDocument":{"enabled": false}}}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuNoDomesticAbuseEvidenceReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildProtectionConcernReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuUrgencyReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuPreviousMiamAttendanceReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDocFromDisputeResolutionProvider, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuTypeOfPreviousMiamAttendanceEvidence, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuCertificateByMediator, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuMediatorDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuOtherExemptionReasons, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeOrganisationRequestField, mapping: {"enabled": false} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicant, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondent, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantPolicy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentPolicy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5ReminderNotifications, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5RemindersSent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotPartInTheCaseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotInTheCase, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"},"gender":{"type" : "keyword"},"otherGender":{"type" : "keyword"},"isDateOfBirthKnown":{"type" : "keyword"},"dateOfBirth":{"type" : "keyword"}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isPathfinderCase, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffQuarantineDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tempQuarantineDocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavQuarantineDocumentList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: historicalRefugeDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}}}} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removableDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentsToBeRemoved, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrdersDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrderText, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeStatusOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reopenStateTo, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abilityToParticipateInProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohYesOrNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohDomesticAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbductionYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseYesNo, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcerns, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupation, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtection, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestraining, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctive, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlace, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceEndDate, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCourtName, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCaseNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDocument, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespDomesticBehavioursLabel of type Label ignored +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDomesticBehaviours, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"respTypeOfAbuse":{"enabled": false},"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbuses, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbductionReasons, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreats, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreatsDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildrenLocationNow, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPassportOfficeNotified, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvementDetails, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionChildHasPassport, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsCourtActions, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildUnsupervisedTime, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildSupervisedTime, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildOtherContact, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPhysicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPsychologicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildSexualAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildEmotionalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildFinancialAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskSexualAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildHasMultiplePassports, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossession, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossessionOtherDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPassportDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respChildHasMultiplePassports":{"enabled": false},"respChildPassportPossession":{"enabled": false},"respChildPassportPossessionOtherDetails":{"enabled": false}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAohYesNo, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAllegationsOfHarm, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDomesticAbuseBehaviour, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbuseBehaviour, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbduction, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentOtherConcerns, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAttendingTheCourt, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentADocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfirmEditContactDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConsentToApplication, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementChild, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: keepContactDetailsPrivate, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialListDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorHaveYouAttendedMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatIsMiamPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpMiamCostsExemptionsPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasRespondentAttendedMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentWillingToAttendMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReasonNotAttendingMiam, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrPastProceedingsForChildren, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentExistingProceedings, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmYesOrNoResponse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmWelshDocument, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentResponseToAllegationOfHarm, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNameForResponse, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfidentialityDisclaimerSubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAgreeStatement, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7WelshResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorName, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListA, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListB, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListC, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListD, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListE, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7WelshResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC8ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC8ResponseDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPrivateReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToPrivateTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPublicReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsRestrictedReason, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSecurityClassification, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToRestrictTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: assignedUserDetailsText, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: c2DocumentBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicationsBundle, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadedDateTime, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: author, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectedParties, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAdditionalApplicationsBundle, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"c2DocumentBundle":{"enabled": false},"otherApplicationsBundle":{"enabled": false},"uploadedDateTime":{"enabled": false},"author":{"enabled": false},"payment":{"enabled": false},"partyType":{"enabled": false},"selectedParties":{"enabled": false}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAdditionalApplicationReviewed, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDocsDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDecisionYesOrNo, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docToBeReviewed, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docLabel, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDoc, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListConfTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: restrictedDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocListDocTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: chooseSendOrReply, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageObject, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageContent, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: openMessages, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: closedMessages, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: externalMessageAttachDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReply, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeForSendAndReply, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messages, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyDynamicList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondToMessage, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageObject, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sendMessageObject, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalMessageAttachDocsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificGateKeeperNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviserGatekeeping, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeName, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdvisorList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: gatekeepingDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationScreen1, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sentDocumentPlaceHolder, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pd36qLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfSafetySupportLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsLetter, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocuments, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationHeader, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalServedApplicationDetailsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeToRespondentOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRecipientsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherParties, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassServedOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruServedOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruEmail, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailId, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeoplePresentInCaseFlag, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaIsOrderListEmpty, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsCA, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsDA, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isConfidential, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: proceedToServing, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeLocalAuthorityYesOrNo, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeC8ToLocalAuthorityYesOrNo, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaDocumentDynamicListForLa, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaLaEmailAddress, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: missingAddressWarningText, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckNeeded, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responsibleForService, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOccupationOrderSelected, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicantRepresented, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: productHearingBundleOn, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confirmRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaApplicantsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRespondentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeopleList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailOptionChecked, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailOptionChecked, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailAddressList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailAddressList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalDocumentsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipients, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipientsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsCheckOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodSolicitorServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodCitizenServingRespondentsOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodUnServedPack, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servedDocumentsDetailsList, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodServeToRespondentOptions, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: canDocumentsBeServed, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepChooseParties, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepDisclaimer, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceAddRecipient, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForApplication, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForOrder, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceWhatWasServed, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimerSubmit, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationWelshLink, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeCase, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseStatus, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: urgencyDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationTypeDetails, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarm, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typesOfHarmRevised, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarmRevised, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typesOfHarmRevised":{"type" : "keyword"}}}}} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangement, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: summaryTabForOrderAppliedFor, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsForSummaryTab, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfSubmission, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingEmptyTable, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosedDate, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentServiceRequestReferenceNumber, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentStatus, mapping: {"type" : "keyword"} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskName, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskToBeCreated, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpHwfRefNo, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundleId, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDocWelsh, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withDrawApplicationData, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWithdrawRequestSent, mapping: {"enabled": false} +2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: [STATE], mapping: {"type" : "keyword"} +2026-02-06T16:26:19.924 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of most recent index for alias prlapps_cases +2026-02-06T16:26:19.927 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient found following indexes for alias prlapps_cases: [prlapps_cases-000001] +2026-02-06T16:26:19.927 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of index prlapps_cases-000001 +2026-02-06T16:26:20.072 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient mapping upserted: true +2026-02-06T16:26:20.073 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient Closing the ES REST client +2026-02-06T16:26:31.370 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:31.371 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 1 +2026-02-06T16:26:31.521 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:31.521 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:31.52073638,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:40 +2026-02-06T16:26:32.004 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:32.017 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:32.018 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.017355391,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:8 +2026-02-06T16:26:32.044 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:32.057 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:32.058 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.057524007,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 +2026-02-06T16:26:32.591 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:32.593 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:32.605 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:32.606 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.60562145,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:10 +2026-02-06T16:26:32.608 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:32.609 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.608651113,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:11 +2026-02-06T16:26:34.246 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:34.254 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:34.254 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:34.254453898,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:26:38.496 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET +2026-02-06T16:26:38.535 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:39.029 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:39.041 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:39.041 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:39.041010195,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 +2026-02-06T16:26:40.516 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. +2026-02-06T16:26:40.521 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. +2026-02-06T16:26:40.522 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. +2026-02-06T16:26:40.523 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. +2026-02-06T16:26:47.487 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET +2026-02-06T16:26:47.489 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:47.795 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:47.815 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:47.815 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:47.814811749,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 +2026-02-06T16:26:48.880 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/case-types/PRLAPPS/event-triggers/testingSupportDummyAdminCreateNoc method: GET +2026-02-06T16:26:48.881 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:48.897 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:48.903 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:48.903 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:48.903343191,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:4 +2026-02-06T16:26:50.812 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST +2026-02-06T16:26:50.813 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:50.866 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:50.873 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:50.873 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:50.873429679,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:26:51.552 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET +2026-02-06T16:26:51.554 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:51.842 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:51.848 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:51.848 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:51.848605016,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:26:55.984 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST +2026-02-06T16:26:55.985 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:56.010 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:56.020 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:56.020 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:56.020012547,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 +2026-02-06T16:26:57.219 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/cases method: POST +2026-02-06T16:26:57.219 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:57.247 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:57.256 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:57.256 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:57.256077262,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 +2026-Feb-06 16:26:57.326 INFO [http-nio-4044-exec-1] o.s.w.s.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2026-Feb-06 16:26:57.328 INFO [http-nio-4044-exec-1] o.s.w.s.DispatcherServlet - Completed initialization in 2 ms +2026-Feb-06 16:26:57.775 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Calling org service to update the org address .. for case id 1770395217318492 +2026-Feb-06 16:26:57.776 INFO [*** prl-cos-api] u.g.h.r.p.s.SystemUserService - Fetching system user token +2026-Feb-06 16:26:59.450 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Called org service to update the org address .. for case id 1770395217318492 +2026-Feb-06 16:26:59.451 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:26:59.451 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Final-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:26:59.451 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-CON-ENG-C8-Final-V2.docx +2026-02-06T16:26:59.504 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:26:59.520 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:26:59.521 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:59.520303771,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 +2026-Feb-06 16:27:01.334 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Final-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:27:01.334 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:27:01.338 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Draft-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:27:01.338 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-CON-ENG-C8-Draft-V2.docx +2026-02-06T16:27:01.379 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:01.396 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:01.396 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:01.396343768,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 +2026-Feb-06 16:27:03.580 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Draft-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-ENG-C100-Final-V3.docx +2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-Final-V3.docx document for case id 1770395217318492 +2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-APP-ENG-C100-Final-V3.docx +2026-02-06T16:27:03.624 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:03.641 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:03.641 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:03.641224618,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:11 +2026-Feb-06 16:27:05.846 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-Final-V3.docx document for case id 1770395217318492 +2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-ENG-C100-DRAFT-V3.docx +2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-DRAFT-V3.docx document for case id 1770395217318492 +2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-APP-ENG-C100-DRAFT-V3.docx +2026-02-06T16:27:05.893 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:05.913 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:05.914 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:05.913367184,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:15 +2026-Feb-06 16:27:08.577 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-DRAFT-V3.docx document for case id 1770395217318492 +2026-Feb-06 16:27:08.577 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:27:08.577 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Final-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:27:10.021 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Final-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:27:10.022 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:27:10.022 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Draft-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:27:11.457 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Draft-V2.docx document for case id 1770395217318492 +2026-Feb-06 16:27:11.458 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:27:11.458 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-WEL-C100-Final-V3.docx +2026-Feb-06 16:27:11.458 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Final-V3.docx document for case id 1770395217318492 +2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Final-V3.docx document for case id 1770395217318492 +2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-WEL-C100-Draft-V3.docx +2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Draft-V3.docx document for case id 1770395217318492 +2026-Feb-06 16:27:17.588 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Draft-V3.docx document for case id 1770395217318492 +2026-02-06T16:27:18.224 INFO [*** ***CFT lib***] u.g.h.r.c.d.s.impl.DocumentManagementServiceImpl Case Type Id is PRLAPPS and validation result is true +2026-02-06T16:27:18.225 INFO [*** ***CFT lib***] u.g.h.r.c.d.s.impl.DocumentManagementServiceImpl JurisdictionI Id is PRIVATELAW and validation result is true +2026-02-06T16:27:18.225 INFO [*** ***CFT lib***] u.g.h.r.c.d.s.impl.DocumentManagementServiceImpl Permission is ATTACH and validation result is true +2026-02-06T16:27:20.158 INFO [*** ***CFT lib***] u.g.h.r.c.d.auditlog.LoggerAuditRepository LA-CDAM dateTime:2026-02-06T16:27:20.121058589,operationType:PatchMetaDataOnDocuments,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:ccd_data,endpointCalled:PATCH /cases/documents/attachToCase,operationalOutcome:200,documentId:91cdf6ee-2ccb-442f-bb90-cd29bf4da451,3fdfb365-9fce-48b6-9883-9f3338002784,f2c107f5-7134-4fc3-9d6c-35fe424f3579,aaf932bc-d841-48e4-be2c-a351453d71d6,25162489-06ef-4b04-8335-8c8e4c76c8c4,e3cf7a7f-a6b0-4228-a5a7-e8e73d59bd70,98526a9a-d159-4299-9808-0a293110b7b4,bc88fa81-3ee6-450f-88f8-e4864a7b94c6,caseId:1770395217318492 +2026-02-06T16:27:20.334 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/event-triggers/internal-update-all-tabs/token method: GET +2026-02-06T16:27:20.364 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:20.498 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET +2026-02-06T16:27:20.499 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 2 +2026-02-06T16:27:20.575 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:20.575 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:20.575244266,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:10 +2026-Feb-06 16:27:20.765 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getOtherChildNotInTheCaseTable()--->start +2026-Feb-06 16:27:20.765 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->start +2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->end +2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndRespondentRelationsTable()--->start +2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndRespondentRelationsTable()--->End +2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->Start +2026-Feb-06 16:27:20.767 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->End +2026-Feb-06 16:27:20.783 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabService - application tab data v2 & v3 +2026-Feb-06 16:27:20.787 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-02-06T16:27:20.795 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events method: POST +2026-02-06T16:27:20.795 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:20.821 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET +2026-02-06T16:27:20.828 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:20.828 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:20.828017504,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:5 +2026-02-06T16:27:21.125 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:21.125329948,operationType:Update case,caseId:1770395217318492,idamId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,invokingService:prl-cos-api,endpointCalled:POST /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:internal-update-all-tabs +2026-Feb-06 16:27:21.136 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getOtherChildNotInTheCaseTable()--->start +2026-Feb-06 16:27:21.136 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->start +2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->end +2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndRespondentRelationsTable()--->start +2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndRespondentRelationsTable()--->End +2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->Start +2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->End +2026-Feb-06 16:27:21.142 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabService - application tab data v2 & v3 +2026-Feb-06 16:27:21.142 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-02-06T16:27:21.221 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:21.239 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:21.240 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.239304096,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:14 +2026-Feb-06 16:27:21.286 INFO [*** prl-cos-api] u.g.h.r.p.s.c.CcdDataStoreService - CaseID: 1770395217318492 removing [CREATOR] case roles from user 930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf +2026-02-06T16:27:21.296 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /case-users method: DELETE +2026-02-06T16:27:21.297 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:21.322 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/query method: POST +2026-02-06T16:27:21.324 INFO [*** ***CFT lib***] u.g.h.r.r.c.endpoints.QueryAssignmentController Inside Single query request method +2026-02-06T16:27:21.339 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:21.339 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.339108526,operationType:Search assignments,assignmentSize:0,invokingService:ccd_data,endpointCalled:/am/role-assignments/query,operationalOutcome:200,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:14 +2026-02-06T16:27:21.345 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:21.344670748,operationType:Remove Case-Assigned Users and Roles,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:DELETE /case-users,operationalOutcome:200,idamIdOfTarget:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,targetCaseRoles:[CREATOR] +2026-Feb-06 16:27:21.345 INFO [*** prl-cos-api] u.g.h.r.p.s.c.CcdDataStoreService - CaseID: 1770395217318492 removed [CREATOR] case roles from user 930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf +2026-02-06T16:27:21.349 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /cases/1770395217318492/supplementary-data method: POST +2026-02-06T16:27:21.350 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:21.502 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/event-triggers/internal-update-all-tabs/token method: GET +2026-02-06T16:27:21.503 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:21.534 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET +2026-02-06T16:27:21.545 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:21.545 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.544962263,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:8 +2026-02-06T16:27:21.612 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events method: POST +2026-02-06T16:27:21.612 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:21.629 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET +2026-02-06T16:27:21.640 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:21.640 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.639913449,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:7 +2026-02-06T16:27:21.887 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:21.88743462,operationType:Update case,caseId:1770395217318492,idamId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,invokingService:prl-cos-api,endpointCalled:POST /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:internal-update-all-tabs +2026-02-06T16:27:21.926 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/event-triggers/internal-update-all-tabs/token method: GET +2026-02-06T16:27:21.927 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:21.963 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET +2026-02-06T16:27:21.971 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:21.971 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.970808398,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:5 +2026-02-06T16:27:22.069 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:22.086 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:22.086 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:22.085983439,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:13 +2026-Feb-06 16:27:22.089 ERROR [*** prl-cos-api] u.g.h.r.p.s.TaskListService - Error regenerating the document Cannot invoke "uk.gov.hmcts.reform.ccd.client.model.CaseDetails.getState()" because "caseDetails" is null +2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getOtherChildNotInTheCaseTable()--->start +2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->start +2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->end +2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndRespondentRelationsTable()--->start +2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndRespondentRelationsTable()--->End +2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->Start +2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->End +2026-Feb-06 16:27:22.109 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabService - application tab data v2 & v3 +2026-Feb-06 16:27:22.109 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 +2026-02-06T16:27:22.112 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events method: POST +2026-02-06T16:27:22.113 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:22.132 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET +2026-02-06T16:27:22.142 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. +2026-02-06T16:27:22.142 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:22.142069915,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:7 +2026-02-06T16:27:22.376 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:22.376734019,operationType:Update case,caseId:1770395217318492,idamId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,invokingService:prl-cos-api,endpointCalled:POST /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:internal-update-all-tabs +2026-02-06T16:27:22.445 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:22.445246856,operationType:Create case,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:POST /case-types/PRLAPPS/cases,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:testingSupportDummyAdminCreateNoc +2026-02-06T16:27:22.491 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492 method: GET +2026-02-06T16:27:22.492 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:22.515 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:22.525 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:22.526 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:22.525762251,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:8 +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts +2026-02-06T16:27:23.963 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:23.963146803,operationType:Case Accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW +2026-02-06T16:27:24.157 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:24.169 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:24.170 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:24.169605708,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:8 +2026-02-06T16:27:33.225 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:33.240 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:33.240 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:33.23981519,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 +2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492/event-triggers/awaitingInformation method: GET +2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/profile method: GET +2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:33.356 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:33.362 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:33.362 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:33.362513002,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:27:33.373 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:33.381 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:33.381 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:33.381179538,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:6 +2026-02-06T16:27:37.337 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:27:37.344 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:37.344 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:37.344276462,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:27:53.779 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST +2026-02-06T16:27:53.779 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:27:53.853 ERROR [*** ccdDataStoreApi] u.g.h.ccd.endpoint.exceptions.RestExceptionHandleruk.gov.hmcts.ccd.endpoint.exceptions.ApiException: Unable to proceed because there are one or more callback Errors or Warnings + at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.callbacks.CallbackService.validateCallbackErrorsAndWarnings(CallbackService.java:201) + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) + at java.base/java.lang.reflect.Method.invoke(Method.java:580) + at ccd-data-store-api//org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:359) + at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at ccd-data-store-api//org.springframework.retry.annotation.AnnotationAwareRetryOperationsInterceptor.invoke(AnnotationAwareRetryOperationsInterceptor.java:165) + at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at ccd-data-store-api//org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:727) + at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.callbacks.CallbackService$$SpringCGLIB$$0.validateCallbackErrorsAndWarnings() + at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.stdapi.CallbackInvoker.invokeMidEventCallback(CallbackInvoker.java:198) + at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.createevent.MidEventCallback.invoke(MidEventCallback.java:86) + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) + at java.base/java.lang.reflect.Method.invoke(Method.java:580) + at ccd-data-store-api//org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:359) + at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) + at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at ccd-data-store-api//org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:380) + at ccd-data-store-api//org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) + at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) + at ccd-data-store-api//org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:727) + at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.createevent.MidEventCallback$$SpringCGLIB$$0.invoke() + at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.validate.AuthorisedValidateCaseFieldsOperation.callMidEventCallback(AuthorisedValidateCaseFieldsOperation.java:94) + at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.validate.AuthorisedValidateCaseFieldsOperation.validateCaseDetails(AuthorisedValidateCaseFieldsOperation.java:67) + at ccd-data-store-api//uk.gov.hmcts.ccd.v2.external.controller.CaseDataValidatorController.validate(CaseDataValidatorController.java:68) + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) + at java.base/java.lang.reflect.Method.invoke(Method.java:580) + at ccd-data-store-api//org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:257) + at ccd-data-store-api//org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:190) + at ccd-data-store-api//org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at ccd-data-store-api//org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:986) + at ccd-data-store-api//org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:891) + at ccd-data-store-api//org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at ccd-data-store-api//org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1088) + at ccd-data-store-api//org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:978) + at ccd-data-store-api//org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at ccd-data-store-api//org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) + at ccd-data-store-api//jakarta.servlet.http.HttpServlet.service(HttpServlet.java:653) + at ccd-data-store-api//org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at ccd-data-store-api//jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) + at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at ccd-data-store-api//org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at ccd-data-store-api//uk.gov.hmcts.ccd.customheaders.CustomHeadersFilter.doFilter(CustomHeadersFilter.java:35) + at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at ccd-data-store-api//org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101) + at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + Unable to proceed because there are one or more callback Errors or Warnings +2026-02-06T16:28:06.153 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST +2026-02-06T16:28:06.153 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:06.210 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:28:06.223 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:06.223 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:06.222713952,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 +2026-02-06T16:28:08.447 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /cases/1770395217318492/events method: POST +2026-02-06T16:28:08.447 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:08.476 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:28:08.486 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:08.487 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:08.486589744,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 +2026-Feb-06 16:28:08.618 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - State from callbackRequest AWAITING_INFORMATION +2026-Feb-06 16:28:08.618 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - State Awaiting information +2026-02-06T16:28:08.867 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:28:08.867383153,operationType:Update case,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:POST /cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:awaitingInformation +2026-02-06T16:28:08.923 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492 method: GET +2026-02-06T16:28:08.923 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:08.937 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:28:08.944 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:08.944 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:08.944685506,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:28:09.220 INFO [*** ccdDataStoreApi] u.g.h.c.d.s.a.AuthorisedGetCaseViewOperation No authorised triggers for caseReference=1770395217318492 caseType=PRLAPPS version=21 caseState=AWAITING_INFORMATION,caseTypeACLs=[ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=CRU}, ACL{accessProfile='citizen', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-judge', crud=RU}, ACL{accessProfile='caseworker-privatelaw-la', crud=RU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRUD}, ACL{accessProfile='courtnav', crud=CRU}, ACL{accessProfile='caseworker-caa', crud=CRUD}, ACL{accessProfile='caseworker-approver', crud=CRUD}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-ras-validation', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-externaluser-viewonly', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}, ACL{accessProfile='hearing-centre-team-leader', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-cafcass', crud=R}], caseStateACLs=[ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=R}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=R}, ACL{accessProfile='citizen', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=R}, ACL{accessProfile='caseworker-privatelaw-la', crud=R}, ACL{accessProfile='caseworker-privatelaw-judge', crud=R}, ACL{accessProfile='caseworker-caa', crud=R}, ACL{accessProfile='caseworker-approver', crud=R}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}] userRoles=[AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=GS_profile, caseAccessCategories=null), AccessProfile(readOnly=false, securityClassification=PUBLIC, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null), AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null)] +2026-02-06T16:28:09.230 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:28:09.230854485,operationType:Case Accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW +2026-02-06T16:28:09.413 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:28:09.420 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:09.421 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:09.420681782,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:6 +2026-02-06T16:28:28.348 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:28:28.365 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:28:28.366 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:28.365423335,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 +2026-02-06T16:30:14.052 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:30:14.053 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 2 +2026-02-06T16:30:14.171 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:14.171 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:14.170858963,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:14 +2026-02-06T16:30:26.044 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET +2026-02-06T16:30:26.045 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:26.376 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:30:26.396 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:26.396 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:26.395742055,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:15 +2026-02-06T16:30:26.762 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/searchCases method: POST +2026-02-06T16:30:26.762 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:26.762 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/case-types/PRLAPPS/work-basket-inputs method: GET +2026-02-06T16:30:26.763 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:26.774 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:30:26.779 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:26.779 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:26.779321384,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:4 +2026-02-06T16:30:26.888 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:30:26.895 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:26.895 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:26.895388896,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:30:28.158 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:30:28.157991761,operationType:Search case,caseId:1770395217318492,1770388851775739,1770384481537623,1770384057970323,1770383705728620,1770383008867307,1770380625874922,1770380412542468,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:POST /internal/searchCases,operationalOutcome:200 +2026-02-06T16:30:29.664 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:30:29.674 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:30:29.674 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:29.674311036,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 +2026-02-06T16:31:19.059 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:31:19.066 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:19.066 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:19.066357749,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:31:19.331 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492 method: GET +2026-02-06T16:31:19.331 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:19.348 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:31:19.355 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:19.356 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:19.355587659,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:6 +2026-02-06T16:31:19.619 INFO [*** ccdDataStoreApi] u.g.h.c.d.s.a.AuthorisedGetCaseViewOperation No authorised triggers for caseReference=1770395217318492 caseType=PRLAPPS version=21 caseState=AWAITING_INFORMATION,caseTypeACLs=[ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=CRU}, ACL{accessProfile='citizen', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-judge', crud=RU}, ACL{accessProfile='caseworker-privatelaw-la', crud=RU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRUD}, ACL{accessProfile='courtnav', crud=CRU}, ACL{accessProfile='caseworker-caa', crud=CRUD}, ACL{accessProfile='caseworker-approver', crud=CRUD}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-ras-validation', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-externaluser-viewonly', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}, ACL{accessProfile='hearing-centre-team-leader', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-cafcass', crud=R}], caseStateACLs=[ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=R}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=R}, ACL{accessProfile='citizen', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=R}, ACL{accessProfile='caseworker-privatelaw-la', crud=R}, ACL{accessProfile='caseworker-privatelaw-judge', crud=R}, ACL{accessProfile='caseworker-caa', crud=R}, ACL{accessProfile='caseworker-approver', crud=R}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}] userRoles=[AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=GS_profile, caseAccessCategories=null), AccessProfile(readOnly=false, securityClassification=PUBLIC, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null), AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null)] +2026-02-06T16:31:19.630 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:19.630649321,operationType:Case Accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW +2026-02-06T16:31:19.774 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492/events/111 method: GET +2026-02-06T16:31:19.774 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:19.803 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:31:19.812 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:19.812 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:19.812724187,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 +2026-02-06T16:31:19.965 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:19.965191808,operationType:View case history,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492/events/111,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:awaitingInformation +2026-02-06T16:31:20.710 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /categoriesAndDocuments/1770395217318492 method: GET +2026-02-06T16:31:20.711 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:20.732 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:31:20.741 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /getLinkedCases/1770395217318492 method: GET +2026-02-06T16:31:20.741 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:20.744 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:20.744 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:20.744326549,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:10 +2026-02-06T16:31:20.766 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:31:20.784 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:20.784 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:20.784210679,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 +2026-02-06T16:31:20.892 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:20.892774259,operationType:Get Linked Cases,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /getLinkedCases/1770395217318492,operationalOutcome:200 +2026-02-06T16:31:20.969 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:20.969797052,operationType:Categories and documents accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /categoriesAndDocuments/1770395217318492,operationalOutcome:200 +2026-02-06T16:31:21.048 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /categoriesAndDocuments/1770395217318492 method: GET +2026-02-06T16:31:21.049 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:21.068 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:31:21.074 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:21.075 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:21.07463594,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 +2026-02-06T16:31:21.236 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:21.236036842,operationType:Categories and documents accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /categoriesAndDocuments/1770395217318492,operationalOutcome:200 +2026-02-06T16:31:25.013 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET +2026-02-06T16:31:25.014 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:26.224 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET +2026-02-06T16:31:26.243 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. +2026-02-06T16:31:26.244 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:26.243460141,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:13 diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index 6e84a1168f4..64409f2025e 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -17,13 +17,22 @@ import org.springframework.web.bind.annotation.RequestHeader; import org.springframework.web.bind.annotation.RestController; import uk.gov.hmcts.reform.ccd.client.model.AboutToStartOrSubmitCallbackResponse; +import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; +import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; +import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; -import uk.gov.hmcts.reform.prl.services.UserService; +import uk.gov.hmcts.reform.prl.utils.CaseUtils; + +import java.util.List; +import java.util.Map; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.INVALID_CLIENT; +import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @Slf4j @RestController @@ -31,7 +40,6 @@ public class AwaitingInformationController { private final AwaitingInformationService awaitingInformationService; private final ObjectMapper objectMapper; - private final UserService userService; private final AuthorisationService authorisationService; @PostMapping(path = "/submit-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @@ -47,8 +55,12 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { if (authorisationService.isAuthorized(authorisation,s2sToken)) { - log.info("entered and submitted"); - return AboutToStartOrSubmitCallbackResponse.builder().build(); + Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); + caseDataUpdated.put(CASE_STATUS, CaseStatus.builder() + .state(AWAITING_INFORMATION.getLabel()) + .build()); + CaseUtils.setCaseState(callbackRequest, caseDataUpdated); + return AboutToStartOrSubmitCallbackResponse.builder().data(caseDataUpdated).build(); } else { throw (new RuntimeException(INVALID_CLIENT)); } @@ -66,11 +78,29 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { if (authorisationService.isAuthorized(authorisation,s2sToken)) { - log.info("entered header method"); return AboutToStartOrSubmitCallbackResponse.builder() .build(); } else { throw (new RuntimeException(INVALID_CLIENT)); } } + + @PostMapping(path = "/validate-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) + @Operation(description = "Callback to validate review date") + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "Child details are fetched"), + @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) + public CallbackResponse validateUrgentCaseCreation( + @RequestBody CallbackRequest callbackRequest + ) { + AwaitingInformation awaitingInformation = objectMapper.convertValue( + callbackRequest.getCaseDetails().getData(), + AwaitingInformation.class + ); + List errorList = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + return uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse.builder() + .errors(errorList) + .build(); + } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java new file mode 100644 index 00000000000..b32fa2eb2eb --- /dev/null +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java @@ -0,0 +1,41 @@ +package uk.gov.hmcts.reform.prl.enums.awaitinginformation; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonValue; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import lombok.RequiredArgsConstructor; +import uk.gov.hmcts.reform.prl.enums.CustomEnumSerializer; + +@RequiredArgsConstructor +@JsonSerialize(using = CustomEnumSerializer.class) +public enum AwaitingInformationReasonEnum { + + @JsonProperty("immediateRisk") + immediateRisk("immediateRisk", "There is evidence of immediate risk of harm to the child[ren]"), + @JsonProperty("applicantsCare") + applicantsCare("applicantsCare", "There is evidence to suggest that the respondent seeks to remove " + + "the child[ren] from the applicant's care"), + @JsonProperty("seekToFrustrate") + seekToFrustrate("seekToFrustrate", "There is evidence to suggest that the respondent would " + + "seek to frustrate the process if the application is not heard urgently"), + @JsonProperty("leaveTheJurisdiction") + leaveTheJurisdiction("leaveTheJurisdiction", "There is evidence to suggest that the respondent " + + "may attempt to leave the jurisdiction with the child[ren] if the application is not heard urgently"), + @JsonProperty("other") + other("other", "Another reason that has not been listed"); + + private final String id; + private final String displayedValue; + + @JsonValue + public String getDisplayedValue() { + return displayedValue; + } + + @JsonCreator + public static AwaitingInformationReasonEnum getValue(String key) { + return AwaitingInformationReasonEnum.valueOf(key); + } + +} diff --git a/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java b/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java new file mode 100644 index 00000000000..e85f7969362 --- /dev/null +++ b/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java @@ -0,0 +1,21 @@ +package uk.gov.hmcts.reform.prl.models.dto.ccd; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; + +import java.time.LocalDate; + +@Data +@Builder(toBuilder = true) +@AllArgsConstructor +@JsonIgnoreProperties(ignoreUnknown = true) +public class AwaitingInformation { + @JsonProperty("reviewByDate") + private LocalDate reviewDate; + @JsonProperty("awaitingInformation") + private AwaitingInformationReasonEnum awaitingInformationReasonEnum; +} diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 0ee97bf924d..29855796d57 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -2,20 +2,11 @@ import lombok.RequiredArgsConstructor; import org.springframework.stereotype.Component; -import uk.gov.hmcts.reform.idam.client.models.UserDetails; -import uk.gov.hmcts.reform.prl.enums.CaseNoteDetails; -import uk.gov.hmcts.reform.prl.models.Element; -import uk.gov.hmcts.reform.prl.models.dto.ccd.CaseData; +import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import java.time.LocalDate; -import java.time.LocalDateTime; import java.util.ArrayList; -import java.util.Comparator; -import java.util.HashMap; import java.util.List; -import java.util.Map; - -import static uk.gov.hmcts.reform.prl.utils.ElementUtils.element; /** * This class is added only as a java service example. It can be deleted when more services is added. @@ -24,66 +15,14 @@ @RequiredArgsConstructor public class AwaitingInformationService { - public static final String ADD_CASE_NOTE_HEADER_1_TEXT = "addCaseNoteHeaderCaseNameText"; - public static final String SUBJECT = "subject"; - public static final String CASE_NOTE = "caseNote"; public static final String CASE_NAME = "Case Name: "; - public List> addCaseNoteDetails(CaseData caseData, UserDetails userDetails) { - CaseNoteDetails currentCaseNoteDetails = getCurrentCaseNoteDetails(caseData, userDetails); - return getCaseNoteDetails(caseData, currentCaseNoteDetails); - } - public List> getCaseNoteDetails(CaseData caseData, CaseNoteDetails currentCaseNoteDetails) { - List> caseNotesCollection = null; - if (currentCaseNoteDetails != null) { - Element caseNoteDetails = element(currentCaseNoteDetails); - if (caseData.getCaseNotes() != null) { - caseNotesCollection = caseData.getCaseNotes(); - caseNotesCollection.add(caseNoteDetails); - } else { - caseNotesCollection = new ArrayList<>(); - caseNotesCollection.add(caseNoteDetails); - } - caseNotesCollection.sort(Comparator.comparing(m -> m.getValue().getDateCreated(), Comparator.reverseOrder())); + public List validateAwaitingInformation(AwaitingInformation awaitingInformation) { + List errorList = new ArrayList<>(); + if (awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { + errorList.add("The date must be in the future"); } - return caseNotesCollection; - } - - private CaseNoteDetails getCurrentCaseNoteDetails(CaseData caseData, UserDetails userDetails) { - return CaseNoteDetails.builder() - .subject(caseData.getSubject()) - .caseNote(caseData.getCaseNote()) - .user(userDetails.getFullName()) - .dateAdded(LocalDate.now().toString()) - .dateCreated(LocalDateTime.now()) - .build(); - } - - public CaseNoteDetails getCurrentCaseNoteDetails(String subject, String caseNote, UserDetails userDetails) { - return CaseNoteDetails.builder() - .subject(subject) - .caseNote(caseNote) - .user(userDetails.getFullName()) - .dateAdded(LocalDate.now().toString()) - .dateCreated(LocalDateTime.now()) - .build(); - } - - public void clearFields(Map caseDataUpdated) { - caseDataUpdated.put(SUBJECT, null); - caseDataUpdated.put(CASE_NOTE, null); - } - - public Map populateHeader(CaseData caseData) { - Map headerMap = new HashMap<>(); - headerMap.put(ADD_CASE_NOTE_HEADER_1_TEXT, getHeaderInfo(caseData)); - return headerMap; - } - - private String getHeaderInfo(CaseData caseData) { - StringBuilder headerInfo = new StringBuilder(); - headerInfo.append(CASE_NAME + caseData.getApplicantCaseName()); - return headerInfo.toString(); + return errorList; } } From c95012dbd7866992e7ee30977e590d2e62b2671a Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Mon, 9 Feb 2026 11:47:54 +0000 Subject: [PATCH 05/42] FPVTL-2022 - added awaiting information tests for controller and service --- ...gInformationControllerIntegrationTest.java | 418 +++++++++++++++++ .../AwaitingInformationControllerTest.java | 355 +++++++++++++++ .../AwaitingInformationServiceTest.java | 425 ++++++++++++++++++ 3 files changed, 1198 insertions(+) create mode 100644 src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java create mode 100644 src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java create mode 100644 src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java new file mode 100644 index 00000000000..92b9c0dc128 --- /dev/null +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -0,0 +1,418 @@ +package uk.gov.hmcts.reform.prl.controllers; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.module.paramnames.ParameterNamesModule; +import lombok.extern.slf4j.Slf4j; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +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.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.web.context.WebApplicationContext; +import uk.gov.hmcts.reform.prl.ResourceLoader; +import uk.gov.hmcts.reform.prl.services.AuthorisationService; +import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; + +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.when; +import static org.springframework.http.MediaType.APPLICATION_JSON; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; +import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; +import static uk.gov.hmcts.reform.prl.util.TestConstants.*; + +/** + * Integration tests for AwaitingInformationController. + * Tests the complete flow of the controller endpoints with MockMvc. + */ +@Slf4j +@SpringBootTest +@RunWith(SpringRunner.class) +@ContextConfiguration +public class AwaitingInformationControllerIntegrationTest { + + private MockMvc mockMvc; + + @Autowired + private WebApplicationContext webApplicationContext; + + @MockBean + private AuthorisationService authorisationService; + + @MockBean + private AwaitingInformationService awaitingInformationService; + + @Autowired + private ObjectMapper objectMapper; + + @Before + public void setUp() { + this.mockMvc = webAppContextSetup(webApplicationContext).build(); + objectMapper.registerModule(new ParameterNamesModule()); + } + + /** + * Test submit awaiting information endpoint with authorized request + * Verifies that the endpoint returns 200 OK when user is authorized + */ + @Test + public void testSubmitAwaitingInformationSuccess() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testSubmitAwaitingInformationSuccess - PASSED"); + } + + /** + * Test submit awaiting information endpoint with unauthorized request + * Verifies that the endpoint returns an appropriate error when user is not authorized + */ + @Test + public void testSubmitAwaitingInformationUnauthorized() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(false); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, "invalidToken") + .header(SERVICE_AUTHORISATION_HEADER, "invalidServiceToken") + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isInternalServerError()) + .andReturn(); + + log.info("testSubmitAwaitingInformationUnauthorized - PASSED"); + } + + /** + * Test populate header endpoint with authorized request + * Verifies that the endpoint returns 200 OK when user is authorized + */ + @Test + public void testPopulateHeaderSuccess() throws Exception { + String url = "/populate-header-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testPopulateHeaderSuccess - PASSED"); + } + + /** + * Test populate header endpoint with unauthorized request + * Verifies that the endpoint returns an appropriate error when user is not authorized + */ + @Test + public void testPopulateHeaderUnauthorized() throws Exception { + String url = "/populate-header-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(false); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, "invalidToken") + .header(SERVICE_AUTHORISATION_HEADER, "invalidServiceToken") + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isInternalServerError()) + .andReturn(); + + log.info("testPopulateHeaderUnauthorized - PASSED"); + } + + /** + * Test validate awaiting information endpoint + * Verifies that the endpoint returns 200 OK and processes the request + */ + @Test + public void testValidateAwaitingInformationSuccess() throws Exception { + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + mockMvc.perform( + post(url) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testValidateAwaitingInformationSuccess - PASSED"); + } + + /** + * Test submit awaiting information endpoint with valid authorization headers + * Verifies that the endpoint returns 200 OK with correct headers + */ + @Test + public void testSubmitAwaitingInformationWithCorrectHeaders() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)) + .thenReturn(true); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .header("Accept", APPLICATION_JSON.toString()) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testSubmitAwaitingInformationWithCorrectHeaders - PASSED"); + } + + /** + * Test populate header endpoint with valid authorization headers + * Verifies that the endpoint returns 200 OK with correct headers + */ + @Test + public void testPopulateHeaderWithCorrectHeaders() throws Exception { + String url = "/populate-header-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)) + .thenReturn(true); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .header("Accept", APPLICATION_JSON.toString()) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testPopulateHeaderWithCorrectHeaders - PASSED"); + } + + /** + * Test validate awaiting information endpoint with valid JSON request + * Verifies that the endpoint processes the request correctly + */ + @Test + public void testValidateAwaitingInformationWithValidJson() throws Exception { + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + mockMvc.perform( + post(url) + .header("Accept", APPLICATION_JSON.toString()) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testValidateAwaitingInformationWithValidJson - PASSED"); + } + + /** + * Test submit awaiting information endpoint with different authorization tokens + * Verifies that the endpoint handles multiple authorization scenarios + */ + @Test + public void testSubmitAwaitingInformationWithDifferentTokens() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + String token1 = "Bearer token1"; + String token2 = "Bearer token2"; + String serviceToken1 = "serviceToken1"; + String serviceToken2 = "serviceToken2"; + + when(authorisationService.isAuthorized(token1, serviceToken1)).thenReturn(true); + when(authorisationService.isAuthorized(token2, serviceToken2)).thenReturn(false); + + // First request with valid tokens + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, token1) + .header(SERVICE_AUTHORISATION_HEADER, serviceToken1) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + // Second request with invalid tokens + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, token2) + .header(SERVICE_AUTHORISATION_HEADER, serviceToken2) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isInternalServerError()) + .andReturn(); + + log.info("testSubmitAwaitingInformationWithDifferentTokens - PASSED"); + } + + /** + * Test all three endpoints in sequence + * Verifies that all endpoints can be called in the same test context + */ + @Test + public void testAllEndpointsSequentially() throws Exception { + String submitUrl = "/submit-awaiting-information"; + String populateHeaderUrl = "/populate-header-awaiting-information"; + String validateUrl = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + + // Test submit endpoint + mockMvc.perform( + post(submitUrl) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + // Test populate header endpoint + mockMvc.perform( + post(populateHeaderUrl) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + // Test validate endpoint + mockMvc.perform( + post(validateUrl) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testAllEndpointsSequentially - PASSED"); + } + + /** + * Test submit awaiting information endpoint with missing authorization header + * Verifies that the endpoint handles missing headers appropriately + */ + @Test + public void testSubmitAwaitingInformationMissingAuthHeader() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + mockMvc.perform( + post(url) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isBadRequest()) + .andReturn(); + + log.info("testSubmitAwaitingInformationMissingAuthHeader - PASSED"); + } + + /** + * Test populate header endpoint with missing service authorization header + * Verifies that the endpoint handles missing service auth header appropriately + */ + @Test + public void testPopulateHeaderMissingServiceAuthHeader() throws Exception { + String url = "/populate-header-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isBadRequest()) + .andReturn(); + + log.info("testPopulateHeaderMissingServiceAuthHeader - PASSED"); + } + + /** + * Test submit awaiting information endpoint response content type + * Verifies that the endpoint returns JSON content type + */ + @Test + public void testSubmitAwaitingInformationResponseContentType() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testSubmitAwaitingInformationResponseContentType - PASSED"); + } + + /** + * Test validate awaiting information endpoint response content type + * Verifies that the validate endpoint returns JSON content type + */ + @Test + public void testValidateAwaitingInformationResponseContentType() throws Exception { + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + mockMvc.perform( + post(url) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + + log.info("testValidateAwaitingInformationResponseContentType - PASSED"); + } +} + diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java new file mode 100644 index 00000000000..8c916d3a3ca --- /dev/null +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -0,0 +1,355 @@ +package uk.gov.hmcts.reform.prl.controllers; + +import com.fasterxml.jackson.databind.ObjectMapper; +import org.junit.Before; +import org.junit.Test; +import org.junit.function.ThrowingRunnable; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.junit.MockitoJUnitRunner; +import uk.gov.hmcts.reform.ccd.client.model.AboutToStartOrSubmitCallbackResponse; +import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; +import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; +import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; +import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; +import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; +import uk.gov.hmcts.reform.prl.services.AuthorisationService; +import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; +import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; + +import java.time.LocalDate; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertThrows; +import static org.junit.Assert.assertTrue; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +@RunWith(MockitoJUnitRunner.Silent.class) +public class AwaitingInformationControllerTest { + + @InjectMocks + private AwaitingInformationController awaitingInformationController; + + @Mock + private AwaitingInformationService awaitingInformationService; + + @Mock + private ObjectMapper objectMapper; + + @Mock + private AuthorisationService authorisationService; + + public static final String AUTH_TOKEN = "Bearer TestAuthToken"; + public static final String S2S_TOKEN = "s2s AuthToken"; + public static final String INVALID_CLIENT_ERROR = "Invalid Client"; + + Map caseDataMap; + CaseDetails caseDetails; + CallbackRequest callbackRequest; + AwaitingInformation awaitingInformation; + + @Before + public void setUp() { + caseDataMap = new HashMap<>(); + caseDataMap.put("id", 12345678L); + + caseDetails = CaseDetails.builder() + .id(12345678L) + .state("AWAITING_INFORMATION") + .data(caseDataMap) + .build(); + + callbackRequest = CallbackRequest.builder() + .caseDetails(caseDetails) + .build(); + + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + } + + @Test + public void testSubmitAwaitingInformationSuccessfully() { + // When + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( + AUTH_TOKEN, + S2S_TOKEN, + callbackRequest + ); + + // Then + assertNotNull(response); + assertNotNull(response.getData()); + assertTrue(response.getData().containsKey(PrlAppsConstants.CASE_STATUS)); + verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); + } + + @Test + public void testSubmitAwaitingInformationSetsCaseStatus() { + // When + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( + AUTH_TOKEN, + S2S_TOKEN, + callbackRequest + ); + + // Then + Map data = response.getData(); + Object caseStatusObj = data.get(PrlAppsConstants.CASE_STATUS); + assertNotNull(caseStatusObj); + assertTrue(caseStatusObj instanceof CaseStatus); + + CaseStatus caseStatus = (CaseStatus) caseStatusObj; + assertEquals("Awaiting information", caseStatus.getState()); + } + + @Test + public void testSubmitAwaitingInformationThrowsExceptionWhenUnauthorized() { + // Given + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(false); + + // When & Then + assertExpectedException( + () -> awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest), + RuntimeException.class, + INVALID_CLIENT_ERROR + ); + } + + @Test + public void testPopulateHeaderAwaitingInformationSuccessfully() { + // When + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( + AUTH_TOKEN, + S2S_TOKEN, + callbackRequest + ); + + // Then + assertNotNull(response); + verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); + } + + @Test + public void testPopulateHeaderAwaitingInformationThrowsExceptionWhenUnauthorized() { + // Given + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(false); + + // When & Then + assertExpectedException( + () -> awaitingInformationController.populateHeader(AUTH_TOKEN, S2S_TOKEN, callbackRequest), + RuntimeException.class, + INVALID_CLIENT_ERROR + ); + } + + @Test + public void testValidateAwaitingInformationWithValidDate() { + // Given + when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + .thenReturn(awaitingInformation); + List emptyErrorList = new ArrayList<>(); + when(awaitingInformationService.validateAwaitingInformation(awaitingInformation)) + .thenReturn(emptyErrorList); + + // When + CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + + // Then + assertNotNull(response); + assertNotNull(response.getErrors()); + assertTrue(response.getErrors().isEmpty()); + verify(awaitingInformationService, times(1)).validateAwaitingInformation(awaitingInformation); + } + + @Test + public void testValidateAwaitingInformationWithInvalidDate() { + // Given + AwaitingInformation invalidAwaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + .thenReturn(invalidAwaitingInfo); + + List errorList = new ArrayList<>(); + errorList.add("The date must be in the future"); + + when(awaitingInformationService.validateAwaitingInformation(invalidAwaitingInfo)) + .thenReturn(errorList); + + // When + CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + + // Then + assertNotNull(response); + assertNotNull(response.getErrors()); + assertEquals(1, response.getErrors().size()); + assertEquals("The date must be in the future", response.getErrors().getFirst()); + verify(awaitingInformationService, times(1)).validateAwaitingInformation(invalidAwaitingInfo); + } + + @Test + public void testValidateAwaitingInformationWithNullDate() { + // Given + AwaitingInformation nullDateAwaitingInfo = AwaitingInformation.builder() + .reviewDate(null) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + .thenReturn(nullDateAwaitingInfo); + + List emptyErrorList = new ArrayList<>(); + when(awaitingInformationService.validateAwaitingInformation(nullDateAwaitingInfo)) + .thenReturn(emptyErrorList); + + // When + CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + + // Then + assertNotNull(response); + assertNotNull(response.getErrors()); + assertTrue(response.getErrors().isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithTodayDate() { + // Given + AwaitingInformation todayDateAwaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now()) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + .thenReturn(todayDateAwaitingInfo); + + List errorList = new ArrayList<>(); + errorList.add("The date must be in the future"); + + when(awaitingInformationService.validateAwaitingInformation(todayDateAwaitingInfo)) + .thenReturn(errorList); + + // When + CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + + // Then + assertNotNull(response); + assertEquals(1, response.getErrors().size()); + } + + @Test + public void testValidateAwaitingInformationConvertsObjectMapperCorrectly() { + // Given + when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + .thenReturn(awaitingInformation); + when(awaitingInformationService.validateAwaitingInformation(awaitingInformation)) + .thenReturn(new ArrayList<>()); + + // When + awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + + // Then + verify(objectMapper, times(1)).convertValue(caseDetails.getData(), AwaitingInformation.class); + } + + @Test + public void testSubmitAwaitingInformationPreservesExistingCaseData() { + // Given + caseDataMap.put("testKey", "testValue"); + + // When + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( + AUTH_TOKEN, + S2S_TOKEN, + callbackRequest + ); + + // Then + assertTrue(response.getData().containsKey("testKey")); + assertEquals("testValue", response.getData().get("testKey")); + } + + @Test + public void testPopulateHeaderReturnsEmptyDataWhenAuthorized() { + // When + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( + AUTH_TOKEN, + S2S_TOKEN, + callbackRequest + ); + + // Then + assertNotNull(response); + // Response may have null or empty data + verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); + } + + @Test + public void testMultipleValidationErrorsReturned() { + // Given + List multipleErrors = new ArrayList<>(); + multipleErrors.add("Error 1"); + multipleErrors.add("Error 2"); + multipleErrors.add("Error 3"); + + when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + .thenReturn(awaitingInformation); + when(awaitingInformationService.validateAwaitingInformation(awaitingInformation)) + .thenReturn(multipleErrors); + + // When + CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + + // Then + assertNotNull(response); + assertEquals(3, response.getErrors().size()); + assertTrue(response.getErrors().contains("Error 1")); + assertTrue(response.getErrors().contains("Error 2")); + assertTrue(response.getErrors().contains("Error 3")); + } + + @Test + public void testAwaitingInformationWithDifferentReasons() { + // Given + AwaitingInformation infoWithOther = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(10)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + .thenReturn(infoWithOther); + when(awaitingInformationService.validateAwaitingInformation(infoWithOther)) + .thenReturn(new ArrayList<>()); + + // When + CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + + // Then + assertNotNull(response); + assertTrue(response.getErrors().isEmpty()); + } + + protected void assertExpectedException( + ThrowingRunnable methodExpectedToFail, + Class expectedThrowableClass, + String expectedMessage) { + T exception = assertThrows(expectedThrowableClass, methodExpectedToFail); + assertEquals(expectedMessage, exception.getMessage()); + } +} + diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java new file mode 100644 index 00000000000..447c92561d7 --- /dev/null +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -0,0 +1,425 @@ +package uk.gov.hmcts.reform.prl.services; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.junit.MockitoJUnitRunner; +import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; + +import java.time.LocalDate; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.assertFalse; + +@RunWith(MockitoJUnitRunner.Silent.class) +public class AwaitingInformationServiceTest { + + @InjectMocks + private AwaitingInformationService awaitingInformationService; + + private AwaitingInformation awaitingInformation; + + @Before + public void setUp() { + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + } + + @Test + public void testValidateAwaitingInformationWithValidFutureDate() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithTodaysDate() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now()) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertFalse(errors.isEmpty()); + assertEquals(1, errors.size()); + assertEquals("The date must be in the future", errors.getFirst()); + } + + @Test + public void testValidateAwaitingInformationWithPastDate() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertFalse(errors.isEmpty()); + assertEquals(1, errors.size()); + assertEquals("The date must be in the future", errors.getFirst()); + } + + @Test + public void testValidateAwaitingInformationWithNullDate() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(null) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithFarFutureDate() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusYears(2)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithManyDaysInFuture() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(365)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithManyDaysInPast() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(365)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertFalse(errors.isEmpty()); + assertEquals(1, errors.size()); + } + + @Test + public void testValidateAwaitingInformationReturnsListType() { + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + // Then + assertNotNull(errors); + } + + @Test + public void testValidateAwaitingInformationWithDifferentReasons() { + // Test with different reason enums + AwaitingInformationReasonEnum[] reasons = { + AwaitingInformationReasonEnum.immediateRisk, + AwaitingInformationReasonEnum.leaveTheJurisdiction, + AwaitingInformationReasonEnum.other + }; + + for (AwaitingInformationReasonEnum reason : reasons) { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(reason) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertTrue(errors.isEmpty()); + } + } + + @Test + public void testValidateAwaitingInformationWithNullReasonEnum() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(null) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithAllNullFields() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(null) + .awaitingInformationReasonEnum(null) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationErrorMessageContent() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertNotNull(errors); + assertEquals(1, errors.size()); + assertTrue(errors.getFirst().contains("date")); + assertTrue(errors.getFirst().contains("future")); + } + + @Test + public void testValidateAwaitingInformationBoundaryDateMinusOne() { + // Given - Date exactly 1 day before today + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertEquals(1, errors.size()); + } + + @Test + public void testValidateAwaitingInformationBoundaryDatePlusOne() { + // Given - Date exactly 1 day after today + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationMultipleCalls() { + // Test that the service handles multiple calls correctly + AwaitingInformation info1 = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + AwaitingInformation info2 = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantsCare) + .build(); + + // When + List errors1 = awaitingInformationService.validateAwaitingInformation(info1); + List errors2 = awaitingInformationService.validateAwaitingInformation(info2); + + // Then + assertTrue(errors1.isEmpty()); + assertFalse(errors2.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithMaxDate() { + // Given - A date far in the future + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.of(9999, 12, 31)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithMinDate() { + // Given - A date far in the past + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.of(2000, 1, 1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertFalse(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationDoesNotModifyInput() { + // Given + LocalDate originalDate = LocalDate.now().plusDays(5); + awaitingInformation = AwaitingInformation.builder() + .reviewDate(originalDate) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then - Verify that the input object hasn't been modified + assertEquals(originalDate, awaitingInformation.getReviewDate()); + assertEquals(AwaitingInformationReasonEnum.immediateRisk, awaitingInformation.getAwaitingInformationReasonEnum()); + } + + @Test + public void testValidateAwaitingInformationErrorListIsMutable() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then - Verify that error list can be modified + int initialSize = errors.size(); + errors.add("Additional error"); + assertEquals(initialSize + 1, errors.size()); + } + + @Test + public void testConstantCaseNameExists() { + // Verify that the CASE_NAME constant is defined + assertNotNull(AwaitingInformationService.CASE_NAME); + assertEquals("Case Name: ", AwaitingInformationService.CASE_NAME); + } + + @Test + public void testValidateAwaitingInformationWithReasonDocuments() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(7)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithReasonInformation() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(7)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantsCare) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationWithReasonOther() { + // Given + awaitingInformation = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(7)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.other) + .build(); + + // When + List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + // Then + assertTrue(errors.isEmpty()); + } + + @Test + public void testValidateAwaitingInformationLogicIsolation() { + // Test that validation logic only checks review date, not other fields + AwaitingInformation info1 = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + + AwaitingInformation info2 = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.other) + .build(); + + // When + List errors1 = awaitingInformationService.validateAwaitingInformation(info1); + List errors2 = awaitingInformationService.validateAwaitingInformation(info2); + + // Then - Both should be empty since the date is the same + assertTrue(errors1.isEmpty()); + assertTrue(errors2.isEmpty()); + } +} + From fcb3503f88f7ed39bec0cce2207898840bd5a513 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Mon, 9 Feb 2026 13:01:15 +0000 Subject: [PATCH 06/42] FPVTL-2022 - added awaiting information - tests --- ...gInformationControllerIntegrationTest.java | 61 ++++++++++--------- 1 file changed, 32 insertions(+), 29 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 92b9c0dc128..df8c2f4d1df 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -23,7 +23,10 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; -import static uk.gov.hmcts.reform.prl.util.TestConstants.*; +import static uk.gov.hmcts.reform.prl.util.TestConstants.AUTHORISATION_HEADER; +import static uk.gov.hmcts.reform.prl.util.TestConstants.SERVICE_AUTHORISATION_HEADER; +import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_AUTH_TOKEN; +import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_SERVICE_AUTH_TOKEN; /** * Integration tests for AwaitingInformationController. @@ -56,8 +59,8 @@ public void setUp() { } /** - * Test submit awaiting information endpoint with authorized request - * Verifies that the endpoint returns 200 OK when user is authorized + * Test submit awaiting information endpoint with authorized request. + * Verifies that the endpoint returns 200 OK when user is authorized. */ @Test public void testSubmitAwaitingInformationSuccess() throws Exception { @@ -80,8 +83,8 @@ public void testSubmitAwaitingInformationSuccess() throws Exception { } /** - * Test submit awaiting information endpoint with unauthorized request - * Verifies that the endpoint returns an appropriate error when user is not authorized + * Test submit awaiting information endpoint with unauthorized request. + * Verifies that the endpoint returns an appropriate error when user is not authorized. */ @Test public void testSubmitAwaitingInformationUnauthorized() throws Exception { @@ -104,8 +107,8 @@ public void testSubmitAwaitingInformationUnauthorized() throws Exception { } /** - * Test populate header endpoint with authorized request - * Verifies that the endpoint returns 200 OK when user is authorized + * Test populate header endpoint with authorized request. + * Verifies that the endpoint returns 200 OK when user is authorized. */ @Test public void testPopulateHeaderSuccess() throws Exception { @@ -128,8 +131,8 @@ public void testPopulateHeaderSuccess() throws Exception { } /** - * Test populate header endpoint with unauthorized request - * Verifies that the endpoint returns an appropriate error when user is not authorized + * Test populate header endpoint with unauthorized request. + * Verifies that the endpoint returns an appropriate error when user is not authorized. */ @Test public void testPopulateHeaderUnauthorized() throws Exception { @@ -152,8 +155,8 @@ public void testPopulateHeaderUnauthorized() throws Exception { } /** - * Test validate awaiting information endpoint - * Verifies that the endpoint returns 200 OK and processes the request + * Test validate awaiting information endpoint. + * Verifies that the endpoint returns 200 OK and processes the request. */ @Test public void testValidateAwaitingInformationSuccess() throws Exception { @@ -172,8 +175,8 @@ public void testValidateAwaitingInformationSuccess() throws Exception { } /** - * Test submit awaiting information endpoint with valid authorization headers - * Verifies that the endpoint returns 200 OK with correct headers + * Test submit awaiting information endpoint with valid authorization headers. + * Verifies that the endpoint returns 200 OK with correct headers. */ @Test public void testSubmitAwaitingInformationWithCorrectHeaders() throws Exception { @@ -197,8 +200,8 @@ public void testSubmitAwaitingInformationWithCorrectHeaders() throws Exception { } /** - * Test populate header endpoint with valid authorization headers - * Verifies that the endpoint returns 200 OK with correct headers + * Test populate header endpoint with valid authorization headers. + * Verifies that the endpoint returns 200 OK with correct headers. */ @Test public void testPopulateHeaderWithCorrectHeaders() throws Exception { @@ -222,8 +225,8 @@ public void testPopulateHeaderWithCorrectHeaders() throws Exception { } /** - * Test validate awaiting information endpoint with valid JSON request - * Verifies that the endpoint processes the request correctly + * Test validate awaiting information endpoint with valid JSON request. + * Verifies that the endpoint processes the request correctly. */ @Test public void testValidateAwaitingInformationWithValidJson() throws Exception { @@ -242,8 +245,8 @@ public void testValidateAwaitingInformationWithValidJson() throws Exception { } /** - * Test submit awaiting information endpoint with different authorization tokens - * Verifies that the endpoint handles multiple authorization scenarios + * Test submit awaiting information endpoint with different authorization tokens. + * Verifies that the endpoint handles multiple authorization scenarios. */ @Test public void testSubmitAwaitingInformationWithDifferentTokens() throws Exception { @@ -283,8 +286,8 @@ public void testSubmitAwaitingInformationWithDifferentTokens() throws Exception } /** - * Test all three endpoints in sequence - * Verifies that all endpoints can be called in the same test context + * Test all three endpoints in sequence. + * Verifies that all endpoints can be called in the same test context. */ @Test public void testAllEndpointsSequentially() throws Exception { @@ -330,8 +333,8 @@ public void testAllEndpointsSequentially() throws Exception { } /** - * Test submit awaiting information endpoint with missing authorization header - * Verifies that the endpoint handles missing headers appropriately + * Test submit awaiting information endpoint with missing authorization header. + * Verifies that the endpoint handles missing headers appropriately. */ @Test public void testSubmitAwaitingInformationMissingAuthHeader() throws Exception { @@ -351,8 +354,8 @@ public void testSubmitAwaitingInformationMissingAuthHeader() throws Exception { } /** - * Test populate header endpoint with missing service authorization header - * Verifies that the endpoint handles missing service auth header appropriately + * Test populate header endpoint with missing service authorization header. + * Verifies that the endpoint handles missing service auth header appropriately. */ @Test public void testPopulateHeaderMissingServiceAuthHeader() throws Exception { @@ -372,8 +375,8 @@ public void testPopulateHeaderMissingServiceAuthHeader() throws Exception { } /** - * Test submit awaiting information endpoint response content type - * Verifies that the endpoint returns JSON content type + * Test submit awaiting information endpoint response content type. + * Verifies that the endpoint returns JSON content type. */ @Test public void testSubmitAwaitingInformationResponseContentType() throws Exception { @@ -396,8 +399,8 @@ public void testSubmitAwaitingInformationResponseContentType() throws Exception } /** - * Test validate awaiting information endpoint response content type - * Verifies that the validate endpoint returns JSON content type + * Test validate awaiting information endpoint response content type. + * Verifies that the validate endpoint returns JSON content type. */ @Test public void testValidateAwaitingInformationResponseContentType() throws Exception { From 57087b64097fcfba61675298215ff0e2227e9a61 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Mon, 9 Feb 2026 13:18:32 +0000 Subject: [PATCH 07/42] FPVTL-2022 - added awaiting information tests for controller and service --- ...gInformationControllerIntegrationTest.java | 88 ------ .../AwaitingInformationServiceTest.java | 296 +----------------- 2 files changed, 2 insertions(+), 382 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 92b9c0dc128..74868ced9b5 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -25,10 +25,6 @@ import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; import static uk.gov.hmcts.reform.prl.util.TestConstants.*; -/** - * Integration tests for AwaitingInformationController. - * Tests the complete flow of the controller endpoints with MockMvc. - */ @Slf4j @SpringBootTest @RunWith(SpringRunner.class) @@ -55,10 +51,6 @@ public void setUp() { objectMapper.registerModule(new ParameterNamesModule()); } - /** - * Test submit awaiting information endpoint with authorized request - * Verifies that the endpoint returns 200 OK when user is authorized - */ @Test public void testSubmitAwaitingInformationSuccess() throws Exception { String url = "/submit-awaiting-information"; @@ -75,14 +67,8 @@ public void testSubmitAwaitingInformationSuccess() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testSubmitAwaitingInformationSuccess - PASSED"); } - /** - * Test submit awaiting information endpoint with unauthorized request - * Verifies that the endpoint returns an appropriate error when user is not authorized - */ @Test public void testSubmitAwaitingInformationUnauthorized() throws Exception { String url = "/submit-awaiting-information"; @@ -99,14 +85,8 @@ public void testSubmitAwaitingInformationUnauthorized() throws Exception { .content(jsonRequest)) .andExpect(status().isInternalServerError()) .andReturn(); - - log.info("testSubmitAwaitingInformationUnauthorized - PASSED"); } - /** - * Test populate header endpoint with authorized request - * Verifies that the endpoint returns 200 OK when user is authorized - */ @Test public void testPopulateHeaderSuccess() throws Exception { String url = "/populate-header-awaiting-information"; @@ -123,14 +103,8 @@ public void testPopulateHeaderSuccess() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testPopulateHeaderSuccess - PASSED"); } - /** - * Test populate header endpoint with unauthorized request - * Verifies that the endpoint returns an appropriate error when user is not authorized - */ @Test public void testPopulateHeaderUnauthorized() throws Exception { String url = "/populate-header-awaiting-information"; @@ -147,14 +121,8 @@ public void testPopulateHeaderUnauthorized() throws Exception { .content(jsonRequest)) .andExpect(status().isInternalServerError()) .andReturn(); - - log.info("testPopulateHeaderUnauthorized - PASSED"); } - /** - * Test validate awaiting information endpoint - * Verifies that the endpoint returns 200 OK and processes the request - */ @Test public void testValidateAwaitingInformationSuccess() throws Exception { String url = "/validate-awaiting-information"; @@ -167,14 +135,8 @@ public void testValidateAwaitingInformationSuccess() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testValidateAwaitingInformationSuccess - PASSED"); } - /** - * Test submit awaiting information endpoint with valid authorization headers - * Verifies that the endpoint returns 200 OK with correct headers - */ @Test public void testSubmitAwaitingInformationWithCorrectHeaders() throws Exception { String url = "/submit-awaiting-information"; @@ -192,14 +154,8 @@ public void testSubmitAwaitingInformationWithCorrectHeaders() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testSubmitAwaitingInformationWithCorrectHeaders - PASSED"); } - /** - * Test populate header endpoint with valid authorization headers - * Verifies that the endpoint returns 200 OK with correct headers - */ @Test public void testPopulateHeaderWithCorrectHeaders() throws Exception { String url = "/populate-header-awaiting-information"; @@ -217,14 +173,8 @@ public void testPopulateHeaderWithCorrectHeaders() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testPopulateHeaderWithCorrectHeaders - PASSED"); } - /** - * Test validate awaiting information endpoint with valid JSON request - * Verifies that the endpoint processes the request correctly - */ @Test public void testValidateAwaitingInformationWithValidJson() throws Exception { String url = "/validate-awaiting-information"; @@ -237,14 +187,8 @@ public void testValidateAwaitingInformationWithValidJson() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testValidateAwaitingInformationWithValidJson - PASSED"); } - /** - * Test submit awaiting information endpoint with different authorization tokens - * Verifies that the endpoint handles multiple authorization scenarios - */ @Test public void testSubmitAwaitingInformationWithDifferentTokens() throws Exception { String url = "/submit-awaiting-information"; @@ -278,14 +222,8 @@ public void testSubmitAwaitingInformationWithDifferentTokens() throws Exception .content(jsonRequest)) .andExpect(status().isInternalServerError()) .andReturn(); - - log.info("testSubmitAwaitingInformationWithDifferentTokens - PASSED"); } - /** - * Test all three endpoints in sequence - * Verifies that all endpoints can be called in the same test context - */ @Test public void testAllEndpointsSequentially() throws Exception { String submitUrl = "/submit-awaiting-information"; @@ -325,14 +263,8 @@ public void testAllEndpointsSequentially() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testAllEndpointsSequentially - PASSED"); } - /** - * Test submit awaiting information endpoint with missing authorization header - * Verifies that the endpoint handles missing headers appropriately - */ @Test public void testSubmitAwaitingInformationMissingAuthHeader() throws Exception { String url = "/submit-awaiting-information"; @@ -346,14 +278,8 @@ public void testSubmitAwaitingInformationMissingAuthHeader() throws Exception { .content(jsonRequest)) .andExpect(status().isBadRequest()) .andReturn(); - - log.info("testSubmitAwaitingInformationMissingAuthHeader - PASSED"); } - /** - * Test populate header endpoint with missing service authorization header - * Verifies that the endpoint handles missing service auth header appropriately - */ @Test public void testPopulateHeaderMissingServiceAuthHeader() throws Exception { String url = "/populate-header-awaiting-information"; @@ -367,14 +293,8 @@ public void testPopulateHeaderMissingServiceAuthHeader() throws Exception { .content(jsonRequest)) .andExpect(status().isBadRequest()) .andReturn(); - - log.info("testPopulateHeaderMissingServiceAuthHeader - PASSED"); } - /** - * Test submit awaiting information endpoint response content type - * Verifies that the endpoint returns JSON content type - */ @Test public void testSubmitAwaitingInformationResponseContentType() throws Exception { String url = "/submit-awaiting-information"; @@ -391,14 +311,8 @@ public void testSubmitAwaitingInformationResponseContentType() throws Exception .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testSubmitAwaitingInformationResponseContentType - PASSED"); } - /** - * Test validate awaiting information endpoint response content type - * Verifies that the validate endpoint returns JSON content type - */ @Test public void testValidateAwaitingInformationResponseContentType() throws Exception { String url = "/validate-awaiting-information"; @@ -411,8 +325,6 @@ public void testValidateAwaitingInformationResponseContentType() throws Exceptio .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - - log.info("testValidateAwaitingInformationResponseContentType - PASSED"); } } diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index 447c92561d7..f4743f60c76 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -5,16 +5,13 @@ import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.junit.MockitoJUnitRunner; -import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; +import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import java.time.LocalDate; import java.util.List; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.assertFalse; +import static org.junit.Assert.*; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationServiceTest { @@ -100,55 +97,6 @@ public void testValidateAwaitingInformationWithNullDate() { assertTrue(errors.isEmpty()); } - @Test - public void testValidateAwaitingInformationWithFarFutureDate() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusYears(2)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertNotNull(errors); - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationWithManyDaysInFuture() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(365)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertNotNull(errors); - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationWithManyDaysInPast() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(365)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertNotNull(errors); - assertFalse(errors.isEmpty()); - assertEquals(1, errors.size()); - } - @Test public void testValidateAwaitingInformationReturnsListType() { // When @@ -181,245 +129,5 @@ public void testValidateAwaitingInformationWithDifferentReasons() { assertTrue(errors.isEmpty()); } } - - @Test - public void testValidateAwaitingInformationWithNullReasonEnum() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(null) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertNotNull(errors); - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationWithAllNullFields() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(null) - .awaitingInformationReasonEnum(null) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertNotNull(errors); - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationErrorMessageContent() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertNotNull(errors); - assertEquals(1, errors.size()); - assertTrue(errors.getFirst().contains("date")); - assertTrue(errors.getFirst().contains("future")); - } - - @Test - public void testValidateAwaitingInformationBoundaryDateMinusOne() { - // Given - Date exactly 1 day before today - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertEquals(1, errors.size()); - } - - @Test - public void testValidateAwaitingInformationBoundaryDatePlusOne() { - // Given - Date exactly 1 day after today - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationMultipleCalls() { - // Test that the service handles multiple calls correctly - AwaitingInformation info1 = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - AwaitingInformation info2 = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantsCare) - .build(); - - // When - List errors1 = awaitingInformationService.validateAwaitingInformation(info1); - List errors2 = awaitingInformationService.validateAwaitingInformation(info2); - - // Then - assertTrue(errors1.isEmpty()); - assertFalse(errors2.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationWithMaxDate() { - // Given - A date far in the future - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.of(9999, 12, 31)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationWithMinDate() { - // Given - A date far in the past - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.of(2000, 1, 1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertFalse(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationDoesNotModifyInput() { - // Given - LocalDate originalDate = LocalDate.now().plusDays(5); - awaitingInformation = AwaitingInformation.builder() - .reviewDate(originalDate) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - Verify that the input object hasn't been modified - assertEquals(originalDate, awaitingInformation.getReviewDate()); - assertEquals(AwaitingInformationReasonEnum.immediateRisk, awaitingInformation.getAwaitingInformationReasonEnum()); - } - - @Test - public void testValidateAwaitingInformationErrorListIsMutable() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - Verify that error list can be modified - int initialSize = errors.size(); - errors.add("Additional error"); - assertEquals(initialSize + 1, errors.size()); - } - - @Test - public void testConstantCaseNameExists() { - // Verify that the CASE_NAME constant is defined - assertNotNull(AwaitingInformationService.CASE_NAME); - assertEquals("Case Name: ", AwaitingInformationService.CASE_NAME); - } - - @Test - public void testValidateAwaitingInformationWithReasonDocuments() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(7)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationWithReasonInformation() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(7)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantsCare) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationWithReasonOther() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(7)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.other) - .build(); - - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - - // Then - assertTrue(errors.isEmpty()); - } - - @Test - public void testValidateAwaitingInformationLogicIsolation() { - // Test that validation logic only checks review date, not other fields - AwaitingInformation info1 = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) - .build(); - - AwaitingInformation info2 = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.other) - .build(); - - // When - List errors1 = awaitingInformationService.validateAwaitingInformation(info1); - List errors2 = awaitingInformationService.validateAwaitingInformation(info2); - - // Then - Both should be empty since the date is the same - assertTrue(errors1.isEmpty()); - assertTrue(errors2.isEmpty()); - } } From 78c23f6d46d0a959bed90f64095c725324bad811 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Mon, 9 Feb 2026 13:22:47 +0000 Subject: [PATCH 08/42] FPVTL-2022 - added awaiting information tests for controller and service --- .../AwaitingInformationControllerIntegrationTest.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 74868ced9b5..d3a708543f9 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -23,7 +23,13 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; -import static uk.gov.hmcts.reform.prl.util.TestConstants.*; +import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; +import static uk.gov.hmcts.reform.prl.util.TestConstants.AUTHORISATION_HEADER; +import static uk.gov.hmcts.reform.prl.util.TestConstants.SERVICE_AUTHORISATION_HEADER; +import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_AUTH_TOKEN; +import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_SERVICE_AUTH_TOKEN; + + @Slf4j @SpringBootTest From 525d5ab9daeafa32bb0525e276d7c0df15183c57 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Mon, 9 Feb 2026 13:34:07 +0000 Subject: [PATCH 09/42] FPVTL-2022 - added awaiting information tests for controller and service --- .../AwaitingInformationControllerIntegrationTest.java | 2 -- .../prl/controllers/AwaitingInformationControllerTest.java | 2 +- .../reform/prl/services/AwaitingInformationServiceTest.java | 5 ++++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index d3a708543f9..095f0382d0a 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -23,14 +23,12 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; -import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; import static uk.gov.hmcts.reform.prl.util.TestConstants.AUTHORISATION_HEADER; import static uk.gov.hmcts.reform.prl.util.TestConstants.SERVICE_AUTHORISATION_HEADER; import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_AUTH_TOKEN; import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_SERVICE_AUTH_TOKEN; - @Slf4j @SpringBootTest @RunWith(SpringRunner.class) diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 8c916d3a3ca..5e6f66dfa7a 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -12,12 +12,12 @@ import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; +import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; -import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; import java.time.LocalDate; import java.util.ArrayList; diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index f4743f60c76..d87b8571992 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -11,7 +11,10 @@ import java.time.LocalDate; import java.util.List; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationServiceTest { From 144880c8c6017132a137c37b35d95976d0fb2822 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Mon, 9 Feb 2026 16:50:26 +0000 Subject: [PATCH 10/42] FPVTL-2022 - added feature toggler --- ...gInformationControllerIntegrationTest.java | 4 +++- .../AwaitingInformationController.java | 24 +++++++++++-------- .../services/AwaitingInformationService.java | 8 ++----- src/main/resources/application.yaml | 1 + 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 095f0382d0a..6e682357904 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -30,7 +30,9 @@ @Slf4j -@SpringBootTest +@SpringBootTest(properties = { + "feature.toggle.awaitingInformationEnabled=true" +}) @RunWith(SpringRunner.class) @ContextConfiguration public class AwaitingInformationControllerIntegrationTest { diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index 64409f2025e..c9315882443 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -11,6 +11,7 @@ import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.http.HttpHeaders; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; @@ -37,6 +38,7 @@ @Slf4j @RestController @RequiredArgsConstructor(onConstructor = @__(@Autowired)) +@ConditionalOnProperty(prefix = "feature.toggle", name = "awaitingInformationEnabled", havingValue = "true") public class AwaitingInformationController { private final AwaitingInformationService awaitingInformationService; private final ObjectMapper objectMapper; @@ -50,15 +52,17 @@ public class AwaitingInformationController { @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) @SecurityRequirement(name = "Bearer Authentication") public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( - @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, - @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, - @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest + @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, + @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, + @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized(authorisation,s2sToken)) { + if (authorisationService.isAuthorized(authorisation, s2sToken)) { Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); - caseDataUpdated.put(CASE_STATUS, CaseStatus.builder() - .state(AWAITING_INFORMATION.getLabel()) - .build()); + caseDataUpdated.put( + CASE_STATUS, CaseStatus.builder() + .state(AWAITING_INFORMATION.getLabel()) + .build() + ); CaseUtils.setCaseState(callbackRequest, caseDataUpdated); return AboutToStartOrSubmitCallbackResponse.builder().data(caseDataUpdated).build(); } else { @@ -77,7 +81,7 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized(authorisation,s2sToken)) { + if (authorisationService.isAuthorized(authorisation, s2sToken)) { return AboutToStartOrSubmitCallbackResponse.builder() .build(); } else { @@ -100,7 +104,7 @@ public CallbackResponse validateUrgentCaseCreation( List errorList = awaitingInformationService.validateAwaitingInformation(awaitingInformation); return uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse.builder() - .errors(errorList) - .build(); + .errors(errorList) + .build(); } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 29855796d57..333852b6eb8 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -1,6 +1,7 @@ package uk.gov.hmcts.reform.prl.services; import lombok.RequiredArgsConstructor; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.stereotype.Component; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; @@ -8,16 +9,11 @@ import java.util.ArrayList; import java.util.List; -/** - * This class is added only as a java service example. It can be deleted when more services is added. - */ @Component @RequiredArgsConstructor +@ConditionalOnProperty(prefix = "feature.toggle", name = "awaitingInformationEnabled", havingValue = "true") public class AwaitingInformationService { - public static final String CASE_NAME = "Case Name: "; - - public List validateAwaitingInformation(AwaitingInformation awaitingInformation) { List errorList = new ArrayList<>(); if (awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index b16daca1965..aaf131c7546 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -78,6 +78,7 @@ feature: barristerFeatureEnabled: ${BARRISTER_FEATURE_ENABLED:false} cafcassDateTimeFeatureEnabled: ${CAFCASS_DATE_TIME_FEATURE_ENABLED:false} osCourtLookupEnabled: ${OS_COURT_LOOKUP_ENABLED:false} + awaitingInformationEnabled: ${AWAITING_INFORMATION_ENABLED:false} xui: url: ${XUI_URL:https://manage-case.aat.platform.hmcts.net/cases/case-details} From 8a750ec9723804790dcad97d019ea65f5b990f1e Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 10 Feb 2026 10:24:54 +0000 Subject: [PATCH 11/42] FPVTL-2022 - added awaiting information - added FS --- charts/prl-cos/values.preview.template.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/prl-cos/values.preview.template.yaml b/charts/prl-cos/values.preview.template.yaml index ca817b2be0d..d04f883a7b0 100644 --- a/charts/prl-cos/values.preview.template.yaml +++ b/charts/prl-cos/values.preview.template.yaml @@ -99,5 +99,6 @@ java: COMMON_DATA_API: http://rd-commondata-api-aat.service.core-compute-aat.internal SEND_LETTER_URL: http://rpe-send-letter-service-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal BARRISTER_FEATURE_ENABLED: true + AWAITING_INFORMATION_ENABLED: true CAFCASS_DATE_TIME_FEATURE_ENABLED: true APP_ENV: "preview" From 7265b1df8d8a3714e64c9e8e9f9c1c997ee30e5e Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 10 Feb 2026 15:51:41 +0000 Subject: [PATCH 12/42] FPVTL-2022 - added awaiting information - added FS --- .../AwaitingInformationController.java | 23 +++++++++++++------ .../gov/hmcts/reform/prl/models/Features.java | 3 ++- .../services/AwaitingInformationService.java | 12 +++++++--- .../prl/services/FeatureToggleService.java | 4 ++++ 4 files changed, 31 insertions(+), 11 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index c9315882443..d7757f03b96 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -25,6 +25,7 @@ import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; +import uk.gov.hmcts.reform.prl.services.FeatureToggleService; import uk.gov.hmcts.reform.prl.utils.CaseUtils; import java.util.List; @@ -38,11 +39,11 @@ @Slf4j @RestController @RequiredArgsConstructor(onConstructor = @__(@Autowired)) -@ConditionalOnProperty(prefix = "feature.toggle", name = "awaitingInformationEnabled", havingValue = "true") public class AwaitingInformationController { private final AwaitingInformationService awaitingInformationService; private final ObjectMapper objectMapper; private final AuthorisationService authorisationService; + private final FeatureToggleService featureToggleService; @PostMapping(path = "/submit-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @Operation(description = "Copy fl401 case name to C100 Case name") @@ -56,7 +57,7 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized(authorisation, s2sToken)) { + if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); caseDataUpdated.put( CASE_STATUS, CaseStatus.builder() @@ -81,7 +82,7 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized(authorisation, s2sToken)) { + if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { return AboutToStartOrSubmitCallbackResponse.builder() .build(); } else { @@ -97,14 +98,22 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( public CallbackResponse validateUrgentCaseCreation( @RequestBody CallbackRequest callbackRequest ) { + if(featureToggleService.isAwaitingInformationEnabled()) { + AwaitingInformation awaitingInformation = objectMapper.convertValue( + callbackRequest.getCaseDetails().getData(), + AwaitingInformation.class + ); + List errorList = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + + return uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse.builder() + .errors(errorList) + .build(); + } AwaitingInformation awaitingInformation = objectMapper.convertValue( callbackRequest.getCaseDetails().getData(), AwaitingInformation.class ); - List errorList = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + return uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse.builder().build(); - return uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse.builder() - .errors(errorList) - .build(); } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/models/Features.java b/src/main/java/uk/gov/hmcts/reform/prl/models/Features.java index 58c6cccddab..416f14ebb07 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/models/Features.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/models/Features.java @@ -9,7 +9,8 @@ public enum Features { IS_BARRISTER_FEATURE_ENABLED("barristerFeatureEnabled"), IS_CAFCASS_DATE_TIME_FEATURE_ENABLED("cafcassDateTimeFeatureEnabled"), - IS_OS_COURT_LOOKUP_ENABLED("osCourtLookupEnabled"); + IS_OS_COURT_LOOKUP_ENABLED("osCourtLookupEnabled"), + IS_AWAITING_INFORMATION_ENABLED("awaitingInformationEnabled"); private final String name; } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 333852b6eb8..c140168c498 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -1,22 +1,28 @@ package uk.gov.hmcts.reform.prl.services; +import lombok.Builder; import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; -@Component +@Slf4j +@Builder @RequiredArgsConstructor -@ConditionalOnProperty(prefix = "feature.toggle", name = "awaitingInformationEnabled", havingValue = "true") +@Service public class AwaitingInformationService { + private final FeatureToggleService featureToggleService; + public List validateAwaitingInformation(AwaitingInformation awaitingInformation) { List errorList = new ArrayList<>(); - if (awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { + if (featureToggleService.isBarristerFeatureEnabled() && awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { errorList.add("The date must be in the future"); } return errorList; diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/FeatureToggleService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/FeatureToggleService.java index 00f5d6b1fbb..0aee0f13cc3 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/FeatureToggleService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/FeatureToggleService.java @@ -55,4 +55,8 @@ public boolean isCafcassDateTimeFeatureEnabled() { public boolean isOsCourtLookupFeatureEnabled() { return isFeatureEnabled(IS_OS_COURT_LOOKUP_ENABLED); } + + public boolean isAwaitingInformationEnabled() { + return isFeatureEnabled(Features.IS_AWAITING_INFORMATION_ENABLED); + } } From 732de69456bcb8f1d2420ba42b377f211c8e27a0 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 10 Feb 2026 16:13:50 +0000 Subject: [PATCH 13/42] FPVTL-2022 - added awaiting information - added FS --- ...itingInformationControllerIntegrationTest.java | 4 ++++ .../AwaitingInformationController.java | 15 +++++---------- .../prl/services/AwaitingInformationService.java | 2 +- .../AwaitingInformationControllerTest.java | 5 +++++ .../services/AwaitingInformationServiceTest.java | 5 +++++ 5 files changed, 20 insertions(+), 11 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 6e682357904..9e8880dc5ad 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -16,6 +16,7 @@ import uk.gov.hmcts.reform.prl.ResourceLoader; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; +import uk.gov.hmcts.reform.prl.services.FeatureToggleService; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; @@ -48,6 +49,9 @@ public class AwaitingInformationControllerIntegrationTest { @MockBean private AwaitingInformationService awaitingInformationService; + @MockBean + private FeatureToggleService featureToggleService; + @Autowired private ObjectMapper objectMapper; diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index d7757f03b96..d7c969c6d4b 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -66,9 +66,9 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( ); CaseUtils.setCaseState(callbackRequest, caseDataUpdated); return AboutToStartOrSubmitCallbackResponse.builder().data(caseDataUpdated).build(); - } else { - throw (new RuntimeException(INVALID_CLIENT)); } + throw (new RuntimeException(INVALID_CLIENT)); + } @PostMapping(path = "/populate-header-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @@ -85,9 +85,9 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { return AboutToStartOrSubmitCallbackResponse.builder() .build(); - } else { - throw (new RuntimeException(INVALID_CLIENT)); } + throw (new RuntimeException(INVALID_CLIENT)); + } @PostMapping(path = "/validate-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @@ -109,11 +109,6 @@ public CallbackResponse validateUrgentCaseCreation( .errors(errorList) .build(); } - AwaitingInformation awaitingInformation = objectMapper.convertValue( - callbackRequest.getCaseDetails().getData(), - AwaitingInformation.class - ); - return uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse.builder().build(); - + throw new RuntimeException(INVALID_CLIENT); } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index c140168c498..38716ae4dbf 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -22,7 +22,7 @@ public class AwaitingInformationService { public List validateAwaitingInformation(AwaitingInformation awaitingInformation) { List errorList = new ArrayList<>(); - if (featureToggleService.isBarristerFeatureEnabled() && awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { + if (featureToggleService.isAwaitingInformationEnabled() && awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { errorList.add("The date must be in the future"); } return errorList; diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 5e6f66dfa7a..954fc9d6a21 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -18,6 +18,7 @@ import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; +import uk.gov.hmcts.reform.prl.services.FeatureToggleService; import java.time.LocalDate; import java.util.ArrayList; @@ -43,6 +44,9 @@ public class AwaitingInformationControllerTest { @Mock private AwaitingInformationService awaitingInformationService; + @Mock + private FeatureToggleService featureToggleService; + @Mock private ObjectMapper objectMapper; @@ -79,6 +83,7 @@ public void setUp() { .build(); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); } @Test diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index d87b8571992..0c6ddeb9e42 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -4,6 +4,7 @@ import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; +import org.mockito.Mock; import org.mockito.junit.MockitoJUnitRunner; import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; @@ -15,17 +16,21 @@ import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; +import static org.mockito.Mockito.when; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationServiceTest { @InjectMocks private AwaitingInformationService awaitingInformationService; + @Mock + private FeatureToggleService featureToggleService; private AwaitingInformation awaitingInformation; @Before public void setUp() { + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); awaitingInformation = AwaitingInformation.builder() .reviewDate(LocalDate.now().plusDays(5)) .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) From d52259d6c765a07253ce4f722d220d05511eebdb Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Tue, 10 Feb 2026 16:40:41 +0000 Subject: [PATCH 14/42] FPVTL-2022 - added feature toggler removed conditional on calss, used the serviec --- .../AwaitingInformationController.java | 20 +++++++++++-------- .../services/AwaitingInformationService.java | 5 ++--- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index d7c969c6d4b..8c9b09d49ca 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -11,7 +11,6 @@ import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.http.HttpHeaders; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; @@ -57,7 +56,10 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { + if (authorisationService.isAuthorized( + authorisation, + s2sToken + ) && featureToggleService.isAwaitingInformationEnabled()) { Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); caseDataUpdated.put( CASE_STATUS, CaseStatus.builder() @@ -82,7 +84,10 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { + if (authorisationService.isAuthorized( + authorisation, + s2sToken + ) && featureToggleService.isAwaitingInformationEnabled()) { return AboutToStartOrSubmitCallbackResponse.builder() .build(); } @@ -98,14 +103,13 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( public CallbackResponse validateUrgentCaseCreation( @RequestBody CallbackRequest callbackRequest ) { - if(featureToggleService.isAwaitingInformationEnabled()) { + + if (featureToggleService.isAwaitingInformationEnabled()) { AwaitingInformation awaitingInformation = objectMapper.convertValue( - callbackRequest.getCaseDetails().getData(), - AwaitingInformation.class - ); + callbackRequest.getCaseDetails().getData(), AwaitingInformation.class); List errorList = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - return uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse.builder() + return CallbackResponse.builder() .errors(errorList) .build(); } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 38716ae4dbf..3b36389937e 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -3,8 +3,6 @@ import lombok.Builder; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; -import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; -import org.springframework.stereotype.Component; import org.springframework.stereotype.Service; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; @@ -22,7 +20,8 @@ public class AwaitingInformationService { public List validateAwaitingInformation(AwaitingInformation awaitingInformation) { List errorList = new ArrayList<>(); - if (featureToggleService.isAwaitingInformationEnabled() && awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { + if (featureToggleService.isAwaitingInformationEnabled() && awaitingInformation.getReviewDate() + != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { errorList.add("The date must be in the future"); } return errorList; From cfe3b9df3720468c9cb2fbfcc22fbd114298d81e Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Thu, 12 Feb 2026 15:41:48 +0000 Subject: [PATCH 15/42] FPVTL-2022 - persist awaitingInformation in to case data --- .../AwaitingInformationController.java | 27 +--- .../services/AwaitingInformationService.java | 26 +++- .../AwaitingInformationControllerTest.java | 131 +++++++++--------- .../AwaitingInformationServiceTest.java | 129 +++++++++++++++-- 4 files changed, 215 insertions(+), 98 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index 8c9b09d49ca..1a7b8ee66f5 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -19,21 +19,17 @@ import uk.gov.hmcts.reform.ccd.client.model.AboutToStartOrSubmitCallbackResponse; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; -import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; -import uk.gov.hmcts.reform.prl.utils.CaseUtils; import java.util.List; import java.util.Map; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.INVALID_CLIENT; -import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @Slf4j @RestController @@ -56,21 +52,12 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized( - authorisation, - s2sToken - ) && featureToggleService.isAwaitingInformationEnabled()) { - Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); - caseDataUpdated.put( - CASE_STATUS, CaseStatus.builder() - .state(AWAITING_INFORMATION.getLabel()) - .build() - ); - CaseUtils.setCaseState(callbackRequest, caseDataUpdated); + if (authorisationService.isAuthorized(authorisation, s2sToken) + && featureToggleService.isAwaitingInformationEnabled()) { + Map caseDataUpdated = awaitingInformationService.addToCase(callbackRequest); return AboutToStartOrSubmitCallbackResponse.builder().data(caseDataUpdated).build(); } throw (new RuntimeException(INVALID_CLIENT)); - } @PostMapping(path = "/populate-header-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @@ -84,10 +71,8 @@ public AboutToStartOrSubmitCallbackResponse populateHeader( @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest ) { - if (authorisationService.isAuthorized( - authorisation, - s2sToken - ) && featureToggleService.isAwaitingInformationEnabled()) { + if (authorisationService.isAuthorized(authorisation, s2sToken) + && featureToggleService.isAwaitingInformationEnabled()) { return AboutToStartOrSubmitCallbackResponse.builder() .build(); } @@ -107,7 +92,7 @@ public CallbackResponse validateUrgentCaseCreation( if (featureToggleService.isAwaitingInformationEnabled()) { AwaitingInformation awaitingInformation = objectMapper.convertValue( callbackRequest.getCaseDetails().getData(), AwaitingInformation.class); - List errorList = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + List errorList = awaitingInformationService.validate(awaitingInformation); return CallbackResponse.builder() .errors(errorList) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 3b36389937e..01febb172ef 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -1,14 +1,23 @@ package uk.gov.hmcts.reform.prl.services; +import com.fasterxml.jackson.databind.ObjectMapper; import lombok.Builder; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; +import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; +import uk.gov.hmcts.reform.prl.enums.CaseEvent; +import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.utils.CaseUtils; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; +import java.util.Map; + +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; +import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @Slf4j @Builder @@ -17,8 +26,9 @@ public class AwaitingInformationService { private final FeatureToggleService featureToggleService; + private final ObjectMapper objectMapper; - public List validateAwaitingInformation(AwaitingInformation awaitingInformation) { + public List validate(AwaitingInformation awaitingInformation) { List errorList = new ArrayList<>(); if (featureToggleService.isAwaitingInformationEnabled() && awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { @@ -26,4 +36,18 @@ public List validateAwaitingInformation(AwaitingInformation awaitingInfo } return errorList; } + + public Map addToCase(CallbackRequest callbackRequest) { + Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); + caseDataUpdated.put( + CASE_STATUS, CaseStatus.builder() + .state(AWAITING_INFORMATION.getLabel()) + .build() + ); + var awaitingInformation = objectMapper.convertValue( + callbackRequest.getCaseDetails().getData(), AwaitingInformation.class); + caseDataUpdated.put(CaseEvent.AWAITING_INFORMATION.getValue(), awaitingInformation); + CaseUtils.setCaseState(callbackRequest, caseDataUpdated); + return caseDataUpdated; + } } diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 954fc9d6a21..1f0def61ba3 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -86,8 +86,18 @@ public void setUp() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); } + // Tests for submitAwaitingInformation method @Test public void testSubmitAwaitingInformationSuccessfully() { + // Given + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put( + PrlAppsConstants.CASE_STATUS, + CaseStatus.builder().state("Awaiting information").build() + ); + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + // When AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( AUTH_TOKEN, @@ -103,22 +113,21 @@ public void testSubmitAwaitingInformationSuccessfully() { } @Test - public void testSubmitAwaitingInformationSetsCaseStatus() { + public void testSubmitAwaitingInformationCallsAddToCaseService() { + // Given + Map updatedCaseData = new HashMap<>(caseDataMap); + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + // When - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( + awaitingInformationController.submitAwaitingInformation( AUTH_TOKEN, S2S_TOKEN, callbackRequest ); // Then - Map data = response.getData(); - Object caseStatusObj = data.get(PrlAppsConstants.CASE_STATUS); - assertNotNull(caseStatusObj); - assertTrue(caseStatusObj instanceof CaseStatus); - - CaseStatus caseStatus = (CaseStatus) caseStatusObj; - assertEquals("Awaiting information", caseStatus.getState()); + verify(awaitingInformationService, times(1)).addToCase(callbackRequest); } @Test @@ -134,6 +143,32 @@ public void testSubmitAwaitingInformationThrowsExceptionWhenUnauthorized() { ); } + @Test + public void testSubmitAwaitingInformationPreservesExistingCaseData() { + // Given + caseDataMap.put("testKey", "testValue"); + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put( + PrlAppsConstants.CASE_STATUS, + CaseStatus.builder().state("Awaiting information").build() + ); + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + + // When + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( + AUTH_TOKEN, + S2S_TOKEN, + callbackRequest + ); + + // Then + assertTrue(response.getData().containsKey("testKey")); + assertEquals("testValue", response.getData().get("testKey")); + } + + + // Tests for populateHeader method @Test public void testPopulateHeaderAwaitingInformationSuccessfully() { // When @@ -161,13 +196,28 @@ public void testPopulateHeaderAwaitingInformationThrowsExceptionWhenUnauthorized ); } + @Test + public void testPopulateHeaderReturnsEmptyDataWhenAuthorized() { + // When + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( + AUTH_TOKEN, + S2S_TOKEN, + callbackRequest + ); + + // Then + assertNotNull(response); + verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); + } + + // Tests for validateUrgentCaseCreation (validateAwaitingInformation) method @Test public void testValidateAwaitingInformationWithValidDate() { // Given when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) .thenReturn(awaitingInformation); List emptyErrorList = new ArrayList<>(); - when(awaitingInformationService.validateAwaitingInformation(awaitingInformation)) + when(awaitingInformationService.validate(awaitingInformation)) .thenReturn(emptyErrorList); // When @@ -177,7 +227,7 @@ public void testValidateAwaitingInformationWithValidDate() { assertNotNull(response); assertNotNull(response.getErrors()); assertTrue(response.getErrors().isEmpty()); - verify(awaitingInformationService, times(1)).validateAwaitingInformation(awaitingInformation); + verify(awaitingInformationService, times(1)).validate(awaitingInformation); } @Test @@ -194,7 +244,7 @@ public void testValidateAwaitingInformationWithInvalidDate() { List errorList = new ArrayList<>(); errorList.add("The date must be in the future"); - when(awaitingInformationService.validateAwaitingInformation(invalidAwaitingInfo)) + when(awaitingInformationService.validate(invalidAwaitingInfo)) .thenReturn(errorList); // When @@ -205,7 +255,7 @@ public void testValidateAwaitingInformationWithInvalidDate() { assertNotNull(response.getErrors()); assertEquals(1, response.getErrors().size()); assertEquals("The date must be in the future", response.getErrors().getFirst()); - verify(awaitingInformationService, times(1)).validateAwaitingInformation(invalidAwaitingInfo); + verify(awaitingInformationService, times(1)).validate(invalidAwaitingInfo); } @Test @@ -220,7 +270,7 @@ public void testValidateAwaitingInformationWithNullDate() { .thenReturn(nullDateAwaitingInfo); List emptyErrorList = new ArrayList<>(); - when(awaitingInformationService.validateAwaitingInformation(nullDateAwaitingInfo)) + when(awaitingInformationService.validate(nullDateAwaitingInfo)) .thenReturn(emptyErrorList); // When @@ -246,7 +296,7 @@ public void testValidateAwaitingInformationWithTodayDate() { List errorList = new ArrayList<>(); errorList.add("The date must be in the future"); - when(awaitingInformationService.validateAwaitingInformation(todayDateAwaitingInfo)) + when(awaitingInformationService.validate(todayDateAwaitingInfo)) .thenReturn(errorList); // When @@ -257,52 +307,6 @@ public void testValidateAwaitingInformationWithTodayDate() { assertEquals(1, response.getErrors().size()); } - @Test - public void testValidateAwaitingInformationConvertsObjectMapperCorrectly() { - // Given - when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) - .thenReturn(awaitingInformation); - when(awaitingInformationService.validateAwaitingInformation(awaitingInformation)) - .thenReturn(new ArrayList<>()); - - // When - awaitingInformationController.validateUrgentCaseCreation(callbackRequest); - - // Then - verify(objectMapper, times(1)).convertValue(caseDetails.getData(), AwaitingInformation.class); - } - - @Test - public void testSubmitAwaitingInformationPreservesExistingCaseData() { - // Given - caseDataMap.put("testKey", "testValue"); - - // When - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( - AUTH_TOKEN, - S2S_TOKEN, - callbackRequest - ); - - // Then - assertTrue(response.getData().containsKey("testKey")); - assertEquals("testValue", response.getData().get("testKey")); - } - - @Test - public void testPopulateHeaderReturnsEmptyDataWhenAuthorized() { - // When - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( - AUTH_TOKEN, - S2S_TOKEN, - callbackRequest - ); - - // Then - assertNotNull(response); - // Response may have null or empty data - verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - } @Test public void testMultipleValidationErrorsReturned() { @@ -314,7 +318,7 @@ public void testMultipleValidationErrorsReturned() { when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) .thenReturn(awaitingInformation); - when(awaitingInformationService.validateAwaitingInformation(awaitingInformation)) + when(awaitingInformationService.validate(awaitingInformation)) .thenReturn(multipleErrors); // When @@ -338,7 +342,7 @@ public void testAwaitingInformationWithDifferentReasons() { when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) .thenReturn(infoWithOther); - when(awaitingInformationService.validateAwaitingInformation(infoWithOther)) + when(awaitingInformationService.validate(infoWithOther)) .thenReturn(new ArrayList<>()); // When @@ -349,6 +353,7 @@ public void testAwaitingInformationWithDifferentReasons() { assertTrue(response.getErrors().isEmpty()); } + // Helper method for assertion protected void assertExpectedException( ThrowingRunnable methodExpectedToFail, Class expectedThrowableClass, diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index 0c6ddeb9e42..333c5bae99a 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -1,32 +1,48 @@ package uk.gov.hmcts.reform.prl.services; +import com.fasterxml.jackson.databind.ObjectMapper; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.junit.MockitoJUnitRunner; +import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; +import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; +import uk.gov.hmcts.reform.prl.enums.CaseEvent; import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; +import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import java.time.LocalDate; +import java.util.HashMap; import java.util.List; +import java.util.Map; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; +import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.when; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationServiceTest { @InjectMocks private AwaitingInformationService awaitingInformationService; + @Mock private FeatureToggleService featureToggleService; + @Mock + private ObjectMapper objectMapper; + private AwaitingInformation awaitingInformation; + private Map caseDataMap; + private CaseDetails caseDetails; + private CallbackRequest callbackRequest; @Before public void setUp() { @@ -35,8 +51,22 @@ public void setUp() { .reviewDate(LocalDate.now().plusDays(5)) .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) .build(); + + caseDataMap = new HashMap<>(); + caseDataMap.put("id", 12345678L); + + caseDetails = CaseDetails.builder() + .id(12345678L) + .state("AWAITING_INFORMATION") + .data(caseDataMap) + .build(); + + callbackRequest = CallbackRequest.builder() + .caseDetails(caseDetails) + .build(); } + // Tests for validate method @Test public void testValidateAwaitingInformationWithValidFutureDate() { // Given @@ -46,7 +76,7 @@ public void testValidateAwaitingInformationWithValidFutureDate() { .build(); // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + List errors = awaitingInformationService.validate(awaitingInformation); // Then assertNotNull(errors); @@ -62,7 +92,7 @@ public void testValidateAwaitingInformationWithTodaysDate() { .build(); // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + List errors = awaitingInformationService.validate(awaitingInformation); // Then assertNotNull(errors); @@ -80,7 +110,7 @@ public void testValidateAwaitingInformationWithPastDate() { .build(); // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + List errors = awaitingInformationService.validate(awaitingInformation); // Then assertNotNull(errors); @@ -98,21 +128,13 @@ public void testValidateAwaitingInformationWithNullDate() { .build(); // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + List errors = awaitingInformationService.validate(awaitingInformation); // Then assertNotNull(errors); assertTrue(errors.isEmpty()); } - @Test - public void testValidateAwaitingInformationReturnsListType() { - // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); - // Then - assertNotNull(errors); - } - @Test public void testValidateAwaitingInformationWithDifferentReasons() { // Test with different reason enums @@ -130,12 +152,93 @@ public void testValidateAwaitingInformationWithDifferentReasons() { .build(); // When - List errors = awaitingInformationService.validateAwaitingInformation(awaitingInformation); + List errors = awaitingInformationService.validate(awaitingInformation); // Then assertNotNull(errors); assertTrue(errors.isEmpty()); } } + + // Tests for addToCase method + @Test + public void testAddToCaseSuccessfully() { + // Given + when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) + .thenReturn(awaitingInformation); + + // When + Map result = awaitingInformationService.addToCase(callbackRequest); + + // Then + assertNotNull(result); + assertTrue(result.containsKey(CASE_STATUS)); + Object caseStatusObj = result.get(CASE_STATUS); + assertNotNull(caseStatusObj); + assertTrue(caseStatusObj instanceof CaseStatus); + } + + + @Test + public void testAddToCasePreservesExistingCaseData() { + // Given + caseDataMap.put("testKey", "testValue"); + caseDataMap.put("anotherKey", 12345); + when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) + .thenReturn(awaitingInformation); + + // When + Map result = awaitingInformationService.addToCase(callbackRequest); + + // Then + assertTrue(result.containsKey("testKey")); + assertEquals("testValue", result.get("testKey")); + assertTrue(result.containsKey("anotherKey")); + assertEquals(12345, result.get("anotherKey")); + } + + + @Test + public void testAddToCaseWithNullReviewDate() { + // Given + AwaitingInformation nullDateInfo = AwaitingInformation.builder() + .reviewDate(null) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .build(); + when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) + .thenReturn(nullDateInfo); + + // When + Map result = awaitingInformationService.addToCase(callbackRequest); + + // Then + assertNotNull(result); + assertTrue(result.containsKey(CASE_STATUS)); + String awaitingInfoKey = CaseEvent.AWAITING_INFORMATION.getValue(); + assertTrue(result.containsKey(awaitingInfoKey)); + } + + @Test + public void testAddToCaseWithMultipleCaseDataEntries() { + // Given + caseDataMap.put("applicantName", "John Doe"); + caseDataMap.put("respondentName", "Jane Doe"); + caseDataMap.put("caseType", "C100"); + caseDataMap.put("eventId", "123456"); + when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) + .thenReturn(awaitingInformation); + + // When + Map result = awaitingInformationService.addToCase(callbackRequest); + + // Then + assertNotNull(result); + assertEquals("John Doe", result.get("applicantName")); + assertEquals("Jane Doe", result.get("respondentName")); + assertEquals("C100", result.get("caseType")); + assertEquals("123456", result.get("eventId")); + assertTrue(result.containsKey(CASE_STATUS)); + } + } From 30c90aac775890f673b9092b7abe3142eecd8220 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Fri, 13 Feb 2026 09:27:25 +0000 Subject: [PATCH 16/42] FPVTL-2022 added reasons for awaiting information --- .../AwaitingInformationReasonEnum.java | 25 +++++++++++-------- .../AwaitingInformationControllerTest.java | 10 ++++---- .../AwaitingInformationServiceTest.java | 16 ++++++------ 3 files changed, 27 insertions(+), 24 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java index b32fa2eb2eb..f79e002bd20 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java @@ -11,17 +11,20 @@ @JsonSerialize(using = CustomEnumSerializer.class) public enum AwaitingInformationReasonEnum { - @JsonProperty("immediateRisk") - immediateRisk("immediateRisk", "There is evidence of immediate risk of harm to the child[ren]"), - @JsonProperty("applicantsCare") - applicantsCare("applicantsCare", "There is evidence to suggest that the respondent seeks to remove " - + "the child[ren] from the applicant's care"), - @JsonProperty("seekToFrustrate") - seekToFrustrate("seekToFrustrate", "There is evidence to suggest that the respondent would " - + "seek to frustrate the process if the application is not heard urgently"), - @JsonProperty("leaveTheJurisdiction") - leaveTheJurisdiction("leaveTheJurisdiction", "There is evidence to suggest that the respondent " - + "may attempt to leave the jurisdiction with the child[ren] if the application is not heard urgently"), + @JsonProperty("miamFurtherInformation") + miamFurtherInformation("miamFurtherInformation", "MIAM - further information required"), + @JsonProperty("dwpHmrcWhereaboutsUnknown") + dwpHmrcWhereaboutsUnknown("dwpHmrcWhereaboutsUnknown", "DWP/HMRC - whereabouts unknown"), + @JsonProperty("applicantFurtherInformation") + applicantFurtherInformation("applicantFurtherInformation", "Applicant - further information required"), + @JsonProperty("applicantClarifyConfidentialDetails") + applicantClarifyConfidentialDetails("applicantClarifyConfidentialDetails", "Applicant - clarify confidential details"), + @JsonProperty("respondentFurtherInformation") + respondentFurtherInformation("respondentFurtherInformation", "Respondent - further information required"), + @JsonProperty("helpWithFeesFurtherAction") + helpWithFeesFurtherAction("helpWithFeesFurtherAction", "Help with Fees - further action required"), + @JsonProperty("ctscRefundRequired") + ctscRefundRequired("ctscRefundRequired", "CTSC - Refund required"), @JsonProperty("other") other("other", "Another reason that has not been listed"); diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 1f0def61ba3..6334383b4c1 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -79,7 +79,7 @@ public void setUp() { awaitingInformation = AwaitingInformation.builder() .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); @@ -235,7 +235,7 @@ public void testValidateAwaitingInformationWithInvalidDate() { // Given AwaitingInformation invalidAwaitingInfo = AwaitingInformation.builder() .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) @@ -263,7 +263,7 @@ public void testValidateAwaitingInformationWithNullDate() { // Given AwaitingInformation nullDateAwaitingInfo = AwaitingInformation.builder() .reviewDate(null) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) @@ -287,7 +287,7 @@ public void testValidateAwaitingInformationWithTodayDate() { // Given AwaitingInformation todayDateAwaitingInfo = AwaitingInformation.builder() .reviewDate(LocalDate.now()) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) @@ -337,7 +337,7 @@ public void testAwaitingInformationWithDifferentReasons() { // Given AwaitingInformation infoWithOther = AwaitingInformation.builder() .reviewDate(LocalDate.now().plusDays(10)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index 333c5bae99a..3e962eb2a1b 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -49,7 +49,7 @@ public void setUp() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); awaitingInformation = AwaitingInformation.builder() .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); caseDataMap = new HashMap<>(); @@ -72,7 +72,7 @@ public void testValidateAwaitingInformationWithValidFutureDate() { // Given awaitingInformation = AwaitingInformation.builder() .reviewDate(LocalDate.now().plusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); // When @@ -88,7 +88,7 @@ public void testValidateAwaitingInformationWithTodaysDate() { // Given awaitingInformation = AwaitingInformation.builder() .reviewDate(LocalDate.now()) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); // When @@ -106,7 +106,7 @@ public void testValidateAwaitingInformationWithPastDate() { // Given awaitingInformation = AwaitingInformation.builder() .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); // When @@ -124,7 +124,7 @@ public void testValidateAwaitingInformationWithNullDate() { // Given awaitingInformation = AwaitingInformation.builder() .reviewDate(null) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); // When @@ -139,8 +139,8 @@ public void testValidateAwaitingInformationWithNullDate() { public void testValidateAwaitingInformationWithDifferentReasons() { // Test with different reason enums AwaitingInformationReasonEnum[] reasons = { - AwaitingInformationReasonEnum.immediateRisk, - AwaitingInformationReasonEnum.leaveTheJurisdiction, + AwaitingInformationReasonEnum.applicantFurtherInformation, + AwaitingInformationReasonEnum.applicantClarifyConfidentialDetails, AwaitingInformationReasonEnum.other }; @@ -203,7 +203,7 @@ public void testAddToCaseWithNullReviewDate() { // Given AwaitingInformation nullDateInfo = AwaitingInformation.builder() .reviewDate(null) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.immediateRisk) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) .thenReturn(nullDateInfo); From f19ab52a337e30dd989f9b3edf47379ab520bfb8 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 17 Feb 2026 09:57:29 +0000 Subject: [PATCH 17/42] FPVTL-2022 - added awaiting information - added FS --- .../hmcts/reform/prl/services/AwaitingInformationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 01febb172ef..b10a3847a1d 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -46,7 +46,7 @@ public Map addToCase(CallbackRequest callbackRequest) { ); var awaitingInformation = objectMapper.convertValue( callbackRequest.getCaseDetails().getData(), AwaitingInformation.class); - caseDataUpdated.put(CaseEvent.AWAITING_INFORMATION.getValue(), awaitingInformation); + // caseDataUpdated.put(CaseEvent.AWAITING_INFORMATION.getValue(), awaitingInformation); CaseUtils.setCaseState(callbackRequest, caseDataUpdated); return caseDataUpdated; } From 9944db6c017a0e9fa7ff400d25c98b058a2aee8a Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 17 Feb 2026 10:08:38 +0000 Subject: [PATCH 18/42] FPVTL-2022 - added awaiting information - added FS --- .../AwaitingInformationServiceTest.java | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index 3e962eb2a1b..ab65e42b6b1 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -198,25 +198,25 @@ public void testAddToCasePreservesExistingCaseData() { } - @Test - public void testAddToCaseWithNullReviewDate() { - // Given - AwaitingInformation nullDateInfo = AwaitingInformation.builder() - .reviewDate(null) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) - .thenReturn(nullDateInfo); - - // When - Map result = awaitingInformationService.addToCase(callbackRequest); - - // Then - assertNotNull(result); - assertTrue(result.containsKey(CASE_STATUS)); - String awaitingInfoKey = CaseEvent.AWAITING_INFORMATION.getValue(); - assertTrue(result.containsKey(awaitingInfoKey)); - } +// @Test +// public void testAddToCaseWithNullReviewDate() { +// // Given +// AwaitingInformation nullDateInfo = AwaitingInformation.builder() +// .reviewDate(null) +// .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) +// .build(); +// when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) +// .thenReturn(nullDateInfo); +// +// // When +// Map result = awaitingInformationService.addToCase(callbackRequest); +// +// // Then +// assertNotNull(result); +// assertTrue(result.containsKey(CASE_STATUS)); +// String awaitingInfoKey = CaseEvent.AWAITING_INFORMATION.getValue(); +// assertTrue(result.containsKey(awaitingInfoKey)); +// } @Test public void testAddToCaseWithMultipleCaseDataEntries() { From 61f4101502d9766eb2f2d507213d4ca54802f2bd Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 17 Feb 2026 10:18:26 +0000 Subject: [PATCH 19/42] FPVTL-2022 - added awaiting information - added FS --- .../services/AwaitingInformationService.java | 1 - .../AwaitingInformationServiceTest.java | 21 ------------------- 2 files changed, 22 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index b10a3847a1d..ad609f94b2d 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -46,7 +46,6 @@ public Map addToCase(CallbackRequest callbackRequest) { ); var awaitingInformation = objectMapper.convertValue( callbackRequest.getCaseDetails().getData(), AwaitingInformation.class); - // caseDataUpdated.put(CaseEvent.AWAITING_INFORMATION.getValue(), awaitingInformation); CaseUtils.setCaseState(callbackRequest, caseDataUpdated); return caseDataUpdated; } diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index ab65e42b6b1..0682c9f0751 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -9,7 +9,6 @@ import org.mockito.junit.MockitoJUnitRunner; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; -import uk.gov.hmcts.reform.prl.enums.CaseEvent; import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; @@ -198,26 +197,6 @@ public void testAddToCasePreservesExistingCaseData() { } -// @Test -// public void testAddToCaseWithNullReviewDate() { -// // Given -// AwaitingInformation nullDateInfo = AwaitingInformation.builder() -// .reviewDate(null) -// .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) -// .build(); -// when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) -// .thenReturn(nullDateInfo); -// -// // When -// Map result = awaitingInformationService.addToCase(callbackRequest); -// -// // Then -// assertNotNull(result); -// assertTrue(result.containsKey(CASE_STATUS)); -// String awaitingInfoKey = CaseEvent.AWAITING_INFORMATION.getValue(); -// assertTrue(result.containsKey(awaitingInfoKey)); -// } - @Test public void testAddToCaseWithMultipleCaseDataEntries() { // Given From 39348625f267321cd24bd1d0f29108e00b502546 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 17 Feb 2026 10:18:54 +0000 Subject: [PATCH 20/42] FPVTL-2022 - added awaiting information - added FS --- .../hmcts/reform/prl/services/AwaitingInformationService.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index ad609f94b2d..25b0f89214a 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -6,7 +6,6 @@ import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; -import uk.gov.hmcts.reform.prl.enums.CaseEvent; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import uk.gov.hmcts.reform.prl.utils.CaseUtils; From 9aa90df97effac331a8ce3f7204beb89ca8f70d6 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Thu, 19 Feb 2026 18:20:21 +0000 Subject: [PATCH 21/42] FPVTL-2022 - added awaiting information - added FS --- .../hmcts/reform/prl/constants/PrlAppsConstants.java | 2 ++ .../prl/services/AwaitingInformationService.java | 11 +++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java b/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java index 7aff015dc99..19c601168c5 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java @@ -1126,6 +1126,8 @@ public class PrlAppsConstants { public static final String CASE_STATUS = "caseStatus"; + public static final String AWAITING_INFORMATION_DETAILS = "awaitingInformationDetails"; + public static final String FETCH_FEE_INVALID_APPLICATION_TYPE = "Invalid application type to fetch fee details: "; public static final String FETCH_FEE_ERROR = "Error while fetching fee details for application type: "; public static final String ENGLISH = "en"; diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 25b0f89214a..6b77819d266 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -8,13 +8,16 @@ import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.services.tab.summary.CaseSummaryTabService; import uk.gov.hmcts.reform.prl.utils.CaseUtils; import java.time.LocalDate; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; import java.util.Map; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @@ -26,6 +29,7 @@ public class AwaitingInformationService { private final FeatureToggleService featureToggleService; private final ObjectMapper objectMapper; + private final CaseSummaryTabService caseSummaryTab; public List validate(AwaitingInformation awaitingInformation) { List errorList = new ArrayList<>(); @@ -43,8 +47,11 @@ public Map addToCase(CallbackRequest callbackRequest) { .state(AWAITING_INFORMATION.getLabel()) .build() ); - var awaitingInformation = objectMapper.convertValue( - callbackRequest.getCaseDetails().getData(), AwaitingInformation.class); + Map awaitingInformationDetails = new HashMap<>(); + awaitingInformationDetails.put("reviewByDate", caseDataUpdated.get("reviewByDate")); + awaitingInformationDetails.put("awaitingInformationReasonList", caseDataUpdated.get("awaitingInformationReasonList")); + caseDataUpdated.put(AWAITING_INFORMATION_DETAILS,awaitingInformationDetails); + CaseUtils.setCaseState(callbackRequest, caseDataUpdated); return caseDataUpdated; } From 14a06e7690972964994543451bc3f6e497d1e693 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Fri, 20 Feb 2026 10:21:06 +0000 Subject: [PATCH 22/42] FPVTL-2022 added tests for awaiting information details for summary tab --- .../AwaitingInformationServiceTest.java | 79 ++++++++++++++++++- 1 file changed, 77 insertions(+), 2 deletions(-) diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index 0682c9f0751..24007b32f6a 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -18,12 +18,14 @@ import java.util.List; import java.util.Map; +import static junit.framework.TestCase.assertNull; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.when; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; @RunWith(MockitoJUnitRunner.Silent.class) @@ -40,7 +42,6 @@ public class AwaitingInformationServiceTest { private AwaitingInformation awaitingInformation; private Map caseDataMap; - private CaseDetails caseDetails; private CallbackRequest callbackRequest; @Before @@ -54,7 +55,7 @@ public void setUp() { caseDataMap = new HashMap<>(); caseDataMap.put("id", 12345678L); - caseDetails = CaseDetails.builder() + CaseDetails caseDetails = CaseDetails.builder() .id(12345678L) .state("AWAITING_INFORMATION") .data(caseDataMap) @@ -219,5 +220,79 @@ public void testAddToCaseWithMultipleCaseDataEntries() { assertTrue(result.containsKey(CASE_STATUS)); } + @Test + public void awaitingInformationDetailsContainsBothReviewDateAndReasonList() { + // Given + LocalDate reviewDate = LocalDate.now().plusDays(10); + caseDataMap.put("reviewByDate", reviewDate); + caseDataMap.put("awaitingInformationReasonList", AwaitingInformationReasonEnum.applicantFurtherInformation); + when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) + .thenReturn(awaitingInformation); + + // When + Map result = awaitingInformationService.addToCase(callbackRequest); + + // Then + assertNotNull(result); + assertTrue(result.containsKey(AWAITING_INFORMATION_DETAILS)); + Map awaitingInfoDetails = (Map) result.get(AWAITING_INFORMATION_DETAILS); + assertNotNull(awaitingInfoDetails); + assertEquals(2, awaitingInfoDetails.size()); + assertEquals(reviewDate, awaitingInfoDetails.get("reviewByDate")); + assertEquals( + AwaitingInformationReasonEnum.applicantFurtherInformation, + awaitingInfoDetails.get("awaitingInformationReasonList") + ); + } + + + @Test + public void awaitingInformationDetailsNotCreatedWhenKeysNotPresent() { + // Given + // caseDataMap does not contain reviewByDate or awaitingInformationReasonList + when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) + .thenReturn(awaitingInformation); + + // When + Map result = awaitingInformationService.addToCase(callbackRequest); + + // Then + assertNotNull(result); + assertTrue(result.containsKey(AWAITING_INFORMATION_DETAILS)); + Map awaitingInfoDetails = (Map) result.get(AWAITING_INFORMATION_DETAILS); + assertNotNull(awaitingInfoDetails); + assertEquals(2, awaitingInfoDetails.size()); + assertNull(awaitingInfoDetails.get("reviewByDate")); + assertNull(awaitingInfoDetails.get("awaitingInformationReasonList")); + } + + @Test + public void awaitingInformationDetailsWithDifferentReasonEnums() { + // Given + AwaitingInformationReasonEnum[] reasons = { + AwaitingInformationReasonEnum.dwpHmrcWhereaboutsUnknown, + AwaitingInformationReasonEnum.applicantFurtherInformation, + AwaitingInformationReasonEnum.applicantClarifyConfidentialDetails, + AwaitingInformationReasonEnum.respondentFurtherInformation + }; + + for (AwaitingInformationReasonEnum reason : reasons) { + caseDataMap.put("reviewByDate", LocalDate.now().plusDays(10)); + caseDataMap.put("awaitingInformationReasonList", reason); + when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) + .thenReturn(awaitingInformation); + + // When + Map result = awaitingInformationService.addToCase(callbackRequest); + + // Then + assertNotNull(result); + assertTrue(result.containsKey(AWAITING_INFORMATION_DETAILS)); + Map awaitingInfoDetails = (Map) result.get(AWAITING_INFORMATION_DETAILS); + assertNotNull(awaitingInfoDetails); + assertEquals(reason, awaitingInfoDetails.get("awaitingInformationReasonList")); + } + } + } From b9ba27edb63e1d54d757dfc2b8d4abf558e50943 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Tue, 24 Feb 2026 10:08:55 +0000 Subject: [PATCH 23/42] FPVTL-2022 review comments --- .../prl/controllers/AwaitingInformationController.java | 5 ++--- .../controllers/AwaitingInformationControllerTest.java | 8 +++----- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index 1a7b8ee66f5..75a076aafd4 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -41,7 +41,7 @@ public class AwaitingInformationController { private final FeatureToggleService featureToggleService; @PostMapping(path = "/submit-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) - @Operation(description = "Copy fl401 case name to C100 Case name") + @Operation(description = "Awaiting On Information callback to update case data and set case status to awaiting information") @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Callback processed.", content = @Content(mediaType = "application/json", schema = @Schema(implementation = AboutToStartOrSubmitCallbackResponse.class))), @@ -68,8 +68,7 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) public AboutToStartOrSubmitCallbackResponse populateHeader( @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, - @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, - @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest + @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken ) { if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 6334383b4c1..8eaf0c0a670 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -174,8 +174,7 @@ public void testPopulateHeaderAwaitingInformationSuccessfully() { // When AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( AUTH_TOKEN, - S2S_TOKEN, - callbackRequest + S2S_TOKEN ); // Then @@ -190,7 +189,7 @@ public void testPopulateHeaderAwaitingInformationThrowsExceptionWhenUnauthorized // When & Then assertExpectedException( - () -> awaitingInformationController.populateHeader(AUTH_TOKEN, S2S_TOKEN, callbackRequest), + () -> awaitingInformationController.populateHeader(AUTH_TOKEN, S2S_TOKEN), RuntimeException.class, INVALID_CLIENT_ERROR ); @@ -201,8 +200,7 @@ public void testPopulateHeaderReturnsEmptyDataWhenAuthorized() { // When AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( AUTH_TOKEN, - S2S_TOKEN, - callbackRequest + S2S_TOKEN ); // Then From 700c867cec4354d188d65d0ac5d632e5989c4444 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 24 Feb 2026 11:01:01 +0000 Subject: [PATCH 24/42] FPVTL-2022 - fixes as per comments --- .../AwaitingInformationController.java | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index 1a7b8ee66f5..3b72b29a1f0 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -60,26 +60,6 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( throw (new RuntimeException(INVALID_CLIENT)); } - @PostMapping(path = "/populate-header-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) - @Operation(description = "Callback to populate the header awaiting information") - @ApiResponses(value = { - @ApiResponse(responseCode = "200", description = "Callback to populate the header awaiting information Processed.", - content = @Content(mediaType = "application/json", schema = @Schema(implementation = AboutToStartOrSubmitCallbackResponse.class))), - @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) - public AboutToStartOrSubmitCallbackResponse populateHeader( - @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, - @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, - @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest - ) { - if (authorisationService.isAuthorized(authorisation, s2sToken) - && featureToggleService.isAwaitingInformationEnabled()) { - return AboutToStartOrSubmitCallbackResponse.builder() - .build(); - } - throw (new RuntimeException(INVALID_CLIENT)); - - } - @PostMapping(path = "/validate-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @Operation(description = "Callback to validate review date") @ApiResponses(value = { From 970a02f21bb77efb0d0f1ee670415ca01b5d5009 Mon Sep 17 00:00:00 2001 From: Ravi Doki Date: Tue, 24 Feb 2026 11:01:50 +0000 Subject: [PATCH 25/42] FPVTL-2022 - fixes as per comments --- .../AwaitingInformationController.java | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index 75a076aafd4..94ce13abec2 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -60,24 +60,6 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( throw (new RuntimeException(INVALID_CLIENT)); } - @PostMapping(path = "/populate-header-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) - @Operation(description = "Callback to populate the header awaiting information") - @ApiResponses(value = { - @ApiResponse(responseCode = "200", description = "Callback to populate the header awaiting information Processed.", - content = @Content(mediaType = "application/json", schema = @Schema(implementation = AboutToStartOrSubmitCallbackResponse.class))), - @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) - public AboutToStartOrSubmitCallbackResponse populateHeader( - @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, - @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken - ) { - if (authorisationService.isAuthorized(authorisation, s2sToken) - && featureToggleService.isAwaitingInformationEnabled()) { - return AboutToStartOrSubmitCallbackResponse.builder() - .build(); - } - throw (new RuntimeException(INVALID_CLIENT)); - - } @PostMapping(path = "/validate-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @Operation(description = "Callback to validate review date") From 1415228f45aa7320630c375c82a583854cedb7dd Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Tue, 24 Feb 2026 11:13:53 +0000 Subject: [PATCH 26/42] FPVTL-2022 review comments --- .../AwaitingInformationControllerTest.java | 49 +------------------ 1 file changed, 2 insertions(+), 47 deletions(-) diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 8eaf0c0a670..9fad9c330c6 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -26,14 +26,9 @@ import java.util.List; import java.util.Map; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertThrows; -import static org.junit.Assert.assertTrue; +import static org.junit.Assert.*; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.times; -import static org.mockito.Mockito.verify; -import static org.mockito.Mockito.when; +import static org.mockito.Mockito.*; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationControllerTest { @@ -168,46 +163,6 @@ public void testSubmitAwaitingInformationPreservesExistingCaseData() { } - // Tests for populateHeader method - @Test - public void testPopulateHeaderAwaitingInformationSuccessfully() { - // When - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( - AUTH_TOKEN, - S2S_TOKEN - ); - - // Then - assertNotNull(response); - verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - } - - @Test - public void testPopulateHeaderAwaitingInformationThrowsExceptionWhenUnauthorized() { - // Given - when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(false); - - // When & Then - assertExpectedException( - () -> awaitingInformationController.populateHeader(AUTH_TOKEN, S2S_TOKEN), - RuntimeException.class, - INVALID_CLIENT_ERROR - ); - } - - @Test - public void testPopulateHeaderReturnsEmptyDataWhenAuthorized() { - // When - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.populateHeader( - AUTH_TOKEN, - S2S_TOKEN - ); - - // Then - assertNotNull(response); - verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - } - // Tests for validateUrgentCaseCreation (validateAwaitingInformation) method @Test public void testValidateAwaitingInformationWithValidDate() { From 31c0a925e2d5efd0015ad361623785de55db781b Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Wed, 25 Feb 2026 10:00:11 +0000 Subject: [PATCH 27/42] FPVTL-2022 review comments --- .../controllers/AwaitingInformationControllerTest.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 9fad9c330c6..676c7e24667 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -26,9 +26,14 @@ import java.util.List; import java.util.Map; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertThrows; +import static org.junit.Assert.assertTrue; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.*; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationControllerTest { From 7cafc9b3bce815eb83303ebe9969f9d73c5f3335 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Wed, 25 Feb 2026 11:17:28 +0000 Subject: [PATCH 28/42] FPVTL-2022 review comments --- dd.log | 33748 ---------------- ...gInformationControllerIntegrationTest.java | 23 +- 2 files changed, 1 insertion(+), 33770 deletions(-) delete mode 100644 dd.log diff --git a/dd.log b/dd.log deleted file mode 100644 index 5ae0660d8dc..00000000000 --- a/dd.log +++ /dev/null @@ -1,33748 +0,0 @@ - -> Configure project : -Runs pact Tests - -> Task :buildCCDXlsx -Import... - loading workbook: ./data/ccd-template.xlsx - importing sheet data from AuthorisationCaseEvent directory - importing sheet data from AuthorisationCaseField directory - importing sheet data from AuthorisationCaseState.json file - importing sheet data from AuthorisationCaseType.json file - importing sheet data from AuthorisationComplexType directory - importing sheet data from CaseEvent directory - importing sheet data from CaseEventToComplexTypes.json file - importing sheet data from CaseEventToComplexTypes directory - importing sheet data from CaseEventToFields directory - importing sheet data from CaseField directory - importing sheet data from CaseRoles.json file - importing sheet data from CaseType.json file - importing sheet data from CaseTypeTab directory - importing sheet data from Categories directory - importing sheet data from ChallengeQuestion.json file - importing sheet data from ComplexTypes.json file - importing sheet data from ComplexTypes directory - importing sheet data from FixedLists.json file - importing sheet data from Jurisdiction.json file - importing sheet data from RoleToAccessProfiles directory - importing sheet data from SearchCasesResultFields directory - importing sheet data from SearchCriteria.json file - importing sheet data from SearchInputFields.json file - importing sheet data from SearchParty.json file - importing sheet data from SearchResultFields.json file - importing sheet data from State.json file - importing sheet data from UserProfile.json file - importing sheet data from WorkBasketInputFields.json file - importing sheet data from WorkBasketResultFields.json file - saving workbook: ../definitions/private-law/xlsx/ccd-config-PRL-local.xlsx -done. - -> Task :compileJava UP-TO-DATE -> Task :processResources UP-TO-DATE -> Task :classes UP-TO-DATE -> Task :compileCftlibJava UP-TO-DATE -> Task :processCftlibResources UP-TO-DATE -> Task :cftlibClasses UP-TO-DATE -> Task :resolveMainClassName UP-TO-DATE -> Task :createManifestApplication -> Task :loadEnvSecrets -> Task :writeManifestRuntime -> Task :writeManifestaac-manage-case-assignment -> Task :writeManifestam-role-assignment-service -> Task :writeManifestccd-case-document-am-api -> Task :writeManifestccd-data-store-api -> Task :writeManifestccd-definition-store-api -> Task :writeManifestccd-user-profile-api -> Task :writeManifestdg-docassembly-api -> Task :writeManifestwa-task-management-api - -> Task :bootWithCCD -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -16:24:02,844 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.12 -16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Here is a list of configurators discovered as a service, by rank: -16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,864 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,864 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,865 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -16:24:02,865 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,865 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,866 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,866 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,870 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,015 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,017 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,017 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@725b62bf - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,017 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,017 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,017 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,017 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,018 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,018 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,018 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,019 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,019 |-INFO in ch.qos.logback.core.util.ContextUtil@4743a487 - Registering shutdown hook with JVM runtime. -16:24:03,022 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,022 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,032 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,035 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,070 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,070 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,071 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,072 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,079 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,079 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,079 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,081 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log" substituted for "${cftlib_log_file}" -16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,087 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log] -16:24:03,088 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4fe4ccd - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,088 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,088 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@725b62bf - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@43a40ff - End of configuration. -16:24:03,090 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@72d4fc91 - Registering current configuration as safe fallback point -16:24:03,090 |-INFO in ch.qos.logback.classic.util.ContextInitializer@37a1327c - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 225 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:02,929 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.18 -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Here is a list of configurators discovered as a service, by rank: -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,930 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -16:24:02,930 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,932 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,932 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,934 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,938 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@36332832 - Resource [logback.xml] occurs multiple times on the classpath. -16:24:02,938 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@36332832 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,938 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@36332832 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:02,944 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,029 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,033 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,035 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3fe1344e - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,036 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,036 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,036 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,036 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,037 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,038 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,038 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,038 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,039 |-INFO in ch.qos.logback.core.util.ContextUtil@62298909 - Registering shutdown hook with JVM runtime. -16:24:03,043 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,043 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,097 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the -16:24:03,097 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,097 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,098 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,098 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,098 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,099 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,099 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log" substituted for "${cftlib_log_file}" -16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,102 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log] -16:24:03,102 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@103cecc3 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,102 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,102 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3fe1344e - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@10a88068 - End of configuration. -16:24:03,105 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@67852c4a - Registering current configuration as safe fallback point -16:24:03,105 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2abc7198 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 173 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:02,939 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.22 -16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Here is a list of configurators discovered as a service, by rank: -16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,940 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,941 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,941 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,941 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,941 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@414b137e - Resource [logback.xml] occurs multiple times on the classpath. -16:24:02,941 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@414b137e - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,941 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@414b137e - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:02,943 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@3c3504a1 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,040 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,044 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,044 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3530b3b9 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,045 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,045 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,045 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,045 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,046 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,047 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,047 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,047 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,047 |-INFO in ch.qos.logback.core.util.ContextUtil@2c799682 - Registering shutdown hook with JVM runtime. -16:24:03,047 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:03,055 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:03,055 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:03,058 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,059 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,067 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,068 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,100 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,100 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,100 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,101 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,101 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,102 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log" substituted for "${cftlib_log_file}" -16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,103 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,104 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log] -16:24:03,105 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3a318d24 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,105 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,105 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3530b3b9 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,105 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@387d8fa0 - End of configuration. -16:24:03,105 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@e937d26 - Registering current configuration as safe fallback point -16:24:03,106 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2135d76c - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 165 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:02,943 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.18 -16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Here is a list of configurators discovered as a service, by rank: -16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,946 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -16:24:02,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -16:24:02,946 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,946 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,947 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,947 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,948 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@51a6dbe0 - Resource [logback.xml] occurs multiple times on the classpath. -16:24:02,948 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@51a6dbe0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,948 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@51a6dbe0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:02,949 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,054 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,062 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,062 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@16641784 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,063 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,063 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,070 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,070 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,070 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,070 |-INFO in ch.qos.logback.core.util.ContextUtil@47c3fbe4 - Registering shutdown hook with JVM runtime. -16:24:03,073 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,073 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,085 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,117 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the -16:24:03,117 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,117 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,118 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,118 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,119 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,119 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,119 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,119 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,122 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log" substituted for "${cftlib_log_file}" -16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,125 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log] -16:24:03,127 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@71faab80 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,127 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,127 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@16641784 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@4b4c887b - End of configuration. -16:24:03,128 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@6fce9c39 - Registering current configuration as safe fallback point -16:24:03,128 |-INFO in ch.qos.logback.classic.util.ContextInitializer@6b11513e - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 181 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:02,952 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.18 -16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Here is a list of configurators discovered as a service, by rank: -16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,958 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,958 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,960 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -16:24:02,961 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -16:24:02,962 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -16:24:02,962 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 2 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,962 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,963 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,963 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,963 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,964 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1db79d1d - Resource [logback.xml] occurs multiple times on the classpath. -16:24:02,964 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1db79d1d - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,964 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1db79d1d - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:02,972 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,083 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,088 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,089 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@6206ff8c - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,089 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,089 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,089 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,089 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,090 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,090 |-INFO in ch.qos.logback.core.util.ContextUtil@7182d9d4 - Registering shutdown hook with JVM runtime. -16:24:03,091 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,091 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,121 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the -16:24:03,121 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,121 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,121 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,121 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,124 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,124 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,124 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,125 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log" substituted for "${cftlib_log_file}" -16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,128 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log] -16:24:03,129 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@43f8dd9b - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,129 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,129 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@6206ff8c - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@26971160 - End of configuration. -16:24:03,129 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@2306042c - Registering current configuration as safe fallback point -16:24:03,130 |-INFO in ch.qos.logback.classic.util.ContextInitializer@19c32b3c - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 166 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:02,945 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found logback-classic version 1.5.25 -16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Here is a list of configurators discovered as a service, by rank: -16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,948 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,948 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,948 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,952 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1a5a3830 - Resource [logback.xml] occurs multiple times on the classpath. -16:24:02,952 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1a5a3830 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,952 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@1a5a3830 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:02,957 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@74f0222c - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,068 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,075 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,075 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@5b65e111 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,076 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,077 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,077 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,077 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,078 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,079 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,079 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,079 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,080 |-INFO in ch.qos.logback.core.util.ContextUtil@1035d9f5 - Registering shutdown hook with JVM runtime. -16:24:03,080 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:03,082 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:03,082 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:03,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" -16:24:03,087 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,087 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,094 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,125 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,125 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,125 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,126 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,126 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,129 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,129 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,129 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,131 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" -16:24:03,132 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,132 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,132 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log] -16:24:03,133 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,133 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,133 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@12516c0f - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,133 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,133 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@5b65e111 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,133 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,136 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6521789d - End of configuration. -16:24:03,137 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@7c894122 - Registering current configuration as safe fallback point -16:24:03,137 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2bec4226 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 189 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:02,947 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found logback-classic version 1.5.25 -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Here is a list of configurators discovered as a service, by rank: -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,954 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,954 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,954 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,954 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,954 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,956 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@72e301c0 - Resource [logback.xml] occurs multiple times on the classpath. -16:24:02,956 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@72e301c0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,956 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@72e301c0 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:02,958 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@366bfed7 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,048 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,054 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,055 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2b5e8a4e - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,055 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,055 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,057 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,057 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,057 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,057 |-INFO in ch.qos.logback.core.util.ContextUtil@415963e4 - Registering shutdown hook with JVM runtime. -16:24:03,057 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:03,072 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:03,072 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:03,085 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/dg-docassembly-api.log" substituted for "${cftlib_log_file}" -16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,088 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,096 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,097 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,129 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,129 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,129 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,131 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,131 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,134 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,135 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,135 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,138 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,138 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,141 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/dg-docassembly-api.log" substituted for "${cftlib_log_file}" -16:24:03,142 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,142 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,142 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/dg-docassembly-api.log] -16:24:03,151 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@371dfcac - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,151 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,151 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2b5e8a4e - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,152 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@282da05e - End of configuration. -16:24:03,152 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@700dc16b - Registering current configuration as safe fallback point -16:24:03,152 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2ea65f2e - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 198 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:02,951 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found logback-core version 1.5.27 -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Here is a list of configurators discovered as a service, by rank: -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:02,953 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 3 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,956 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:02,959 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:02,960 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,961 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@59468d22 - Resource [logback.xml] occurs multiple times on the classpath. -16:24:02,961 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@59468d22 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:02,961 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@59468d22 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:03,090 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,090 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Scan attribute not set or set to unrecognized value. -16:24:03,094 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,095 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59107234 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,095 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,096 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,096 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,096 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,096 |-INFO in ch.qos.logback.core.util.ContextUtil@7884c2a1 - Registering shutdown hook with JVM runtime. -16:24:03,100 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" -16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,101 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,111 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,112 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,150 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,150 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,150 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,151 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,156 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,156 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,156 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,157 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,157 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,158 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" -16:24:03,158 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,158 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,159 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log] -16:24:03,160 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4dbd9a57 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,160 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,160 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59107234 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,160 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@15467f0e - End of configuration. -16:24:03,161 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@340820d3 - Registering current configuration as safe fallback point -16:24:03,161 |-INFO in ch.qos.logback.classic.util.ContextInitializer@784d629 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 205 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.4.6) - -16:24:03,488 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.24 -16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Here is a list of configurators discovered as a service, by rank: -16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - They will be invoked in order until ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY is returned. -16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Constructed configurator of type class org.springframework.boot.logging.logback.RootLogLevelConfigurator -16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - org.springframework.boot.logging.logback.RootLogLevelConfigurator.configure() call lasted 0 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:24:03,494 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:03,495 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:24:03,496 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:24:03,496 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:03,497 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@770a50a8 - Resource [logback.xml] occurs multiple times on the classpath. -16:24:03,497 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@770a50a8 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] -16:24:03,497 |-WARN in ch.qos.logback.classic.util.DefaultJoranConfigurator@770a50a8 - Resource [logback.xml] occurs at [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.java-logging/logging/6.1.9/13617c02f53eb8259c01b67ec4f0fd890d35e62d/logging-6.1.9.jar!/logback.xml] -16:24:03,499 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@4e6953e4 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,586 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,591 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,592 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@514b734b - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,593 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,593 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,593 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,593 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,595 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,598 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,599 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,599 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,599 |-INFO in ch.qos.logback.core.util.ContextUtil@7461e6da - Registering shutdown hook with JVM runtime. -16:24:03,599 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:03,600 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:03,600 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:03,604 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" -16:24:03,607 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,607 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,621 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,622 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,661 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,661 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,661 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,662 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,662 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,665 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,666 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,666 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,667 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,667 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,669 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" -16:24:03,669 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,669 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,669 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log] -16:24:03,670 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,670 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,670 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb59eab - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,670 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,670 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@514b734b - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,670 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,677 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@70937dc1 - End of configuration. -16:24:03,698 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@4261e5be - Registering current configuration as safe fallback point -16:24:03,698 |-INFO in ch.qos.logback.classic.util.ContextInitializer@1f0a1769 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 203 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -16:24:03,713 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,723 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,724 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,724 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@394bc9bf - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:03,724 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,724 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,724 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,724 |-INFO in ch.qos.logback.core.util.ContextUtil@30466116 - Registering shutdown hook with JVM runtime. -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,724 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,725 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,725 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,725 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,725 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,725 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log" substituted for "${cftlib_log_file}" -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,726 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/runtime.log] -16:24:03,726 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,726 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@394bc9bf - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1493cafe - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,726 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,726 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@394bc9bf - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,726 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6f78464b - End of configuration. -16:24:03,726 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@6536a560 - Registering current configuration as safe fallback point - -16:24:03,723 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@670034d2 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,731 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,732 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@1a5a03a7 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,732 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,732 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,732 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,732 |-INFO in ch.qos.logback.core.util.ContextUtil@65e49a08 - Registering shutdown hook with JVM runtime. -16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:03,732 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" -16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,733 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,734 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,734 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,734 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,734 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,734 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,734 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" -16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,735 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,735 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log] -16:24:03,736 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,736 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@1a5a03a7 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5354a732 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,736 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,736 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@1a5a03a7 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,736 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@32494c2 - End of configuration. -16:24:03,736 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@753fcea3 - Registering current configuration as safe fallback point - - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.4.1) - -16:24:03,741 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,746 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,746 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,747 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@24eb7b54 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:03,747 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,747 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,747 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,747 |-INFO in ch.qos.logback.core.util.ContextUtil@77d00612 - Registering shutdown hook with JVM runtime. -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,747 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the -16:24:03,747 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,747 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,747 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,747 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,747 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log" substituted for "${cftlib_log_file}" -16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,748 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,750 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log] -16:24:03,750 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,750 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@24eb7b54 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@32d2a56a - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,750 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,750 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@24eb7b54 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,750 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@12677ba7 - End of configuration. -16:24:03,750 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@35396574 - Registering current configuration as safe fallback point - -16:24:03,796 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@50899a23 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,802 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@11a7e184 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,802 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,802 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,802 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,802 |-INFO in ch.qos.logback.core.util.ContextUtil@1d7067e8 - Registering shutdown hook with JVM runtime. -16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:03,802 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,803 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,803 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,803 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,803 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,803 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,803 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log" substituted for "${cftlib_log_file}" -16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,804 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-definition-store-api.log] -16:24:03,804 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,804 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@11a7e184 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,804 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@140838ca - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,805 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,805 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@11a7e184 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@1b4aee7 - End of configuration. -16:24:03,805 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@54af0873 - Registering current configuration as safe fallback point - -16:24:03,791 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,805 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,806 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,806 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59c49388 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:03,806 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,806 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,806 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,806 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,806 |-INFO in ch.qos.logback.core.util.ContextUtil@3795cb0c - Registering shutdown hook with JVM runtime. -16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,809 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,813 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the -16:24:03,813 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,813 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,813 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,813 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,813 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,813 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,813 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log" substituted for "${cftlib_log_file}" -16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,817 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,817 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-case-document-am-api.log] -16:24:03,818 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,818 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59c49388 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@337d7a95 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,818 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,818 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@59c49388 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,818 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@7ffe67e1 - End of configuration. -16:24:03,818 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@270f0359 - Registering current configuration as safe fallback point - - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.4.1) - - __ __ _____ _ __ _ __ - ______________/ / ____/ /__ / __(_)___ (_) /_(_)___ ____ _____/ /_____ ________ - / ___/ ___/ __ /_____/ __ / _ \/ /_/ / __ \/ / __/ / __ \/ __ \______/ ___/ __/ __ \/ ___/ _ \ -/ /__/ /__/ /_/ /_____/ /_/ / __/ __/ / / / / / /_/ / /_/ / / / /_____(__ ) /_/ /_/ / / / __/ -\___/\___/\__,_/ \__,_/\___/_/ /_/_/ /_/_/\__/_/\____/_/ /_/ /____/\__/\____/_/ \___/ - - :: Spring Boot :: (v3.4.1) - -16:24:03,883 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:03,901 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,902 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,903 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2236ac2d - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:03,903 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,903 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,903 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,903 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,903 |-INFO in ch.qos.logback.core.util.ContextUtil@515efacb - Registering shutdown hook with JVM runtime. -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,904 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the -16:24:03,904 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,904 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,904 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,904 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,904 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log" substituted for "${cftlib_log_file}" -16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,905 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/wa-task-management-api.log] -16:24:03,905 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,905 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2236ac2d - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@3057c3c1 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,905 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,905 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2236ac2d - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,905 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ccf3994 - End of configuration. -16:24:03,905 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@6208b607 - Registering current configuration as safe fallback point - -2026-02-06T16:24:03.919 INFO [main] uk.gov.hmcts.reform.ccd.documentam.Application Starting Application using Java 21.0.10 with PID 117001 (/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/ccd-case-document-am-api/0.19.2017/1ab04d33982c3c2246f2bb8be2a1c319f8867317/ccd-case-document-am-api-0.19.2017.jar started by ravi in /home/ravi/workspaces/projects/prl-cos-api) -2026-02-06T16:24:03.921 INFO [main] uk.gov.hmcts.reform.ccd.documentam.Application The following 1 profile is active: "local" -16:24:03,930 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:03,930 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Scan attribute not set or set to unrecognized value. -16:24:03,931 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:03,931 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@103bc60b - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:03,931 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:03,931 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:03,931 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:03,931 |-INFO in ch.qos.logback.core.util.ContextUtil@1674e582 - Registering shutdown hook with JVM runtime. -16:24:03,931 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" -16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,934 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:03,934 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:03,934 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:03,934 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:03,934 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:03,934 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" -16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:03,935 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:03,935 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log] -16:24:03,935 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:03,936 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@103bc60b - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@463cf9fa - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:03,936 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:03,936 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@103bc60b - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:03,936 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@679c1bc3 - End of configuration. -16:24:03,936 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@464edde3 - Registering current configuration as safe fallback point - -2026-02-06T16:24:03.959 INFO [main] u.g.h.ccd.definition.store.CaseDataAPIApplication Starting CaseDataAPIApplication vunspecified using Java 21.0.10 with PID 117001 (/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/application/0.19.2017/966978f77ac0995df05c488a518d8a59fcba255d/application-0.19.2017.jar started by ravi in /home/ravi/workspaces/projects/prl-cos-api) -2026-02-06T16:24:03.960 INFO [main] u.g.h.ccd.definition.store.CaseDataAPIApplication The following 1 profile is active: "local" - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.4.4) - -2026-02-06T16:24:04.051 INFO [background-preinit] org.hibernate.validator.internal.util.Version HV000001: Hibernate Validator 8.0.2.Final -2026-02-06T16:24:04.115 INFO [main] u.gov.hmcts.reform.wataskmanagementapi.Application Starting Application using Java 21.0.10 with PID 117001 (/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/wa-task-management-api/0.19.2017/d551f7757caf033086b7e48d6936ab192f1ef75f/wa-task-management-api-0.19.2017.jar started by ravi in /home/ravi/workspaces/projects/prl-cos-api) -2026-02-06T16:24:04.119 DEBUG [main] u.gov.hmcts.reform.wataskmanagementapi.Application Running with Spring Boot v3.4.4, Spring v6.2.5 -2026-02-06T16:24:04.119 INFO [main] u.gov.hmcts.reform.wataskmanagementapi.Application The following 1 profile is active: "local" -16:24:04,249 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@2cc14eb9 - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:04,299 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:04,300 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2518e37b - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:04,300 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:04,300 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:04,300 |-INFO in ch.qos.logback.core.util.ContextUtil@77b2f362 - Registering shutdown hook with JVM runtime. -16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:04,300 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:04,300 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:04,301 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:04,301 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:04,301 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:04,301 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:04,301 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:04,301 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:04,301 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:04,301 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log" substituted for "${cftlib_log_file}" -16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:04,302 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/ccd-data-store-api.log] -16:24:04,302 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@51a0cfab - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2518e37b - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:04,302 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5515db86 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:04,302 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@51a0cfab - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:04,302 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@2518e37b - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:04,303 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:04,303 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@2a12f7f2 - End of configuration. -16:24:04,303 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@4873daf0 - Registering current configuration as safe fallback point - - __ __ __ __ - ______________/ / ____/ /___ _/ /_____ _ _____/ /_____ ________ - / ___/ ___/ __ /_____/ __ / __ `/ __/ __ `/_____/ ___/ __/ __ \/ ___/ _ \ -/ /__/ /__/ /_/ /_____/ /_/ / /_/ / /_/ /_/ /_____(__ ) /_/ /_/ / / / __/ -\___/\___/\__,_/ \__,_/\__,_/\__/\__,_/ /____/\__/\____/_/ \___/ - - :: Spring Boot :: (v3.4.1) - -2026-02-06T16:24:04.397 INFO [background-preinit] org.hibernate.validator.internal.util.Version HV000001: Hibernate Validator 8.0.2.Final - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.5.10) - -16:24:04,781 |-INFO in ConfigurationWatchList(mainURL=jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml, fileWatchList={}, urlWatchList=[}) - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:04,783 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:04,783 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:04,783 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@32029424 - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:04,785 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:04,785 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:04,786 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:04,786 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:04,786 |-INFO in ch.qos.logback.core.util.ContextUtil@64df095c - Registering shutdown hook with JVM runtime. -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:04,786 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - BEWARE: Writing to the console can be very slow. Avoid logging to the -16:24:04,786 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:04,786 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:04,786 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:04,786 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:04,786 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log" substituted for "${cftlib_log_file}" -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:04,787 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/am-role-assignment-service.log] -16:24:04,787 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:04,787 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@32029424 - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@1eb0da81 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:04,787 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:04,787 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@32029424 - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:04,787 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@25fd64d9 - End of configuration. -16:24:04,787 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@3d81d635 - Registering current configuration as safe fallback point - - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.3.11) - -2026-02-06T16:24:04.830 INFO [main] u.g.h.r.roleassignment.RoleAssignmentApplication The following 1 profile is active: "local" -16:24:04,835 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@5353b35f - URL [jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml] is not of type file -16:24:04,837 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:04,858 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:04,858 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@4179817e - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:04,858 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:04,859 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:04,859 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:04,859 |-INFO in ch.qos.logback.core.util.ContextUtil@7bd14a2c - Registering shutdown hook with JVM runtime. -16:24:04,859 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Main configuration file URL: jar:file:/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/bootstrapper/0.19.2017/a689c76aaa24a8d4028e0be3b1d5da2d3e6dbaf/bootstrapper-0.19.2017.jar!/logback.xml -16:24:04,859 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - FileWatchList= {} -16:24:04,859 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - URLWatchList= {} -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:04,859 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:04,859 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:04,859 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:04,859 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:04,860 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:04,860 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log" substituted for "${cftlib_log_file}" -16:24:04,860 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:04,863 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "%d{yyyy-MM-dd'T'HH:mm:ss.SSS} %-5level [%thread] %logger{50}%ex{50} %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:04,866 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/aac-manage-case-assignment.log] -16:24:04,866 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:04,866 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@4179817e - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@7ccfef43 - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:04,866 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:04,866 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@4179817e - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:04,866 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@35d6c742 - End of configuration. -16:24:04,866 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@3660934c - Registering current configuration as safe fallback point - - __ - ____ ___ ____ _____ _________ _________ ____ __________ _____ ___ / / - / __ `__ \/ __ `/ __ \__/ ___/ __ `/ ___/ _ \__/ __ `/ ___/ __ `/ __ `__ \/ __ -/ / / / / / /_/ / / / /_/ /__/ /_/ (__ ) __/_/ /_/ (__ ) /_/ / / / / / / /_ -_/ /_/ /_/\__,_/_/ /_/ \___/\__,_/____/\___/ \__,_/____/\__, /_/ /_/ /_/\__/ - /____/ - :: Spring Boot :: (v3.4.1) - -16:24:05,126 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "false" substituted for "${LOGBACK_CONFIGURATION_DEBUG:-false}" -16:24:05,126 |-INFO in ch.qos.logback.classic.model.processor.ConfigurationModelHandlerFull - Scan attribute not set or set to unrecognized value. -16:24:05,126 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Adding LoggerContextListener of type [ch.qos.logback.classic.jul.LevelChangePropagator] to the object stack -16:24:05,127 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3205d38d - Propagating DEBUG level on Logger[ROOT] onto the JUL framework -16:24:05,127 |-INFO in ch.qos.logback.classic.model.processor.LoggerContextListenerModelHandler - Starting LoggerContextListener -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "yyyy-MM-dd'T'HH:mm:ss.SSS" substituted for "${LOGBACK_DATE_FORMAT:-yyyy-MM-dd'T'HH:mm:ss.SSS}" -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "50" substituted for "${EXCEPTION_LENGTH:-50}" -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "50" substituted for "${LOGGER_LENGTH:-50}" -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "%d{yyyy-MMM-dd HH:mm:ss.SSS} %-5level [%thread] %logger{15} - %msg%n" substituted for "${CONSOLE_LOG_PATTERN:-%d{${LOGBACK_DATE_FORMAT}} %-5level [%thread] %logger{${LOGGER_LENGTH}}%ex{${EXCEPTION_LENGTH}} %msg%n}" -16:24:05,127 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - ch.qos.logback.core.hook.DelayingShutdownHook was renamed as ch.qos.logback.core.hook.DefaultShutdownHook -16:24:05,127 |-WARN in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - Please use the new class name -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ShutdownHookModelHandler - About to instantiate shutdown hook of type [ch.qos.logback.core.hook.DefaultShutdownHook] -16:24:05,127 |-INFO in ch.qos.logback.core.util.ContextUtil@6ed84a4f - Registering shutdown hook with JVM runtime. -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [CONSOLE] -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "%d{yyyy-MMM-dd HH:mm:ss.SSS} %-5level [%thread] %logger{15} - %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:05,127 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - NOTE: Writing to the console can be slow. Try to avoid logging to the -16:24:05,127 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - console in production environments, especially in high volume systems. -16:24:05,127 |-INFO in ch.qos.logback.core.ConsoleAppender[CONSOLE] - See also https://logback.qos.ch/codes.html#slowConsole -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [ASYNC_CONSOLE] -16:24:05,127 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.classic.AsyncAppender] -16:24:05,128 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [CONSOLE] to ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] -16:24:05,128 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Attaching appender named [CONSOLE] to AsyncAppender. -16:24:05,128 |-INFO in ch.qos.logback.classic.AsyncAppender[ASYNC_CONSOLE] - Setting discardingThreshold to 51 -16:24:05,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [FILE] -16:24:05,130 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.FileAppender] -16:24:05,131 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log" substituted for "${cftlib_log_file}" -16:24:05,131 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:24:05,131 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "%d{yyyy-MMM-dd HH:mm:ss.SSS} %-5level [%thread] %logger{15} - %msg%n" substituted for "${CONSOLE_LOG_PATTERN}" -16:24:05,131 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/home/ravi/workspaces/projects/prl-cos-api/build/cftlib/logs/hostApplication.log] -16:24:05,132 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:24:05,132 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3205d38d - Propagating INFO level on Logger[ROOT] onto the JUL framework -16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [FILE] to Logger[ROOT] -16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4f47cfca - value "WARN" substituted for "${cftlib_console_log_level}" -16:24:05,132 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to WARN -16:24:05,132 |-INFO in ch.qos.logback.classic.jul.LevelChangePropagator@3205d38d - Propagating WARN level on Logger[ROOT] onto the JUL framework -16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [ASYNC_CONSOLE] to Logger[ROOT] -16:24:05,132 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@4f3d3dfd - End of configuration. -16:24:05,132 |-INFO in org.springframework.boot.logging.logback.SpringBootJoranConfigurator@3e75924f - Registering current configuration as safe fallback point - - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.3.5) - -2026-Feb-06 16:24:05.170 INFO [restartedMain] u.g.h.r.p.Application - The following 1 profile is active: "local" -2026-02-06T16:24:05.560 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'feignDecoder' with a different definition: replacing [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=camelCaseFeignConfiguration; factoryMethodName=feignDecoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/CamelCaseFeignConfiguration.class]] with [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=snakeCaseFeignConfiguration; factoryMethodName=feignDecoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/SnakeCaseFeignConfiguration.class]] -2026-02-06T16:24:05.560 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'feignEncoder' with a different definition: replacing [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=camelCaseFeignConfiguration; factoryMethodName=feignEncoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/CamelCaseFeignConfiguration.class]] with [Root bean: class=null; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=snakeCaseFeignConfiguration; factoryMethodName=feignEncoder; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [uk/gov/hmcts/reform/wataskmanagementapi/config/SnakeCaseFeignConfiguration.class]] -2026-02-06T16:24:05.572 INFO [main] o.s.d.r.config.RepositoryConfigurationDelegate Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2026-02-06T16:24:05.760 INFO [main] o.s.d.r.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 161 ms. Found 4 JPA repository interfaces. -2026-02-06T16:24:06.679 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'idam-s2s-auth.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.680 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.authorisation.ServiceAuthorisationApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.680 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'idam-s2s-auth-health.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.680 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.authorisation.ServiceAuthorisationHealthApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.682 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'ccd-access-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.682 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseAccessApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'case-assignment-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseAssignmentApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'core-case-event-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.683 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseEventsApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.684 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'ccd-user-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.685 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CaseUserApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=true; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.686 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'core-case-data-api.FeignClientSpecification' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientSpecification; scope=; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.687 INFO [main] o.s.b.factory.support.DefaultListableBeanFactory Overriding bean definition for bean 'uk.gov.hmcts.reform.ccd.client.CoreCaseDataApi' with an equivalent definition: replacing [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] with [Generic bean: class=org.springframework.cloud.openfeign.FeignClientFactoryBean; scope=; abstract=false; lazyInit=null; autowireMode=2; dependencyCheck=0; autowireCandidate=true; primary=false; fallback=false; factoryBeanName=null; factoryMethodName=null; initMethodNames=null; destroyMethodNames=null] -2026-02-06T16:24:06.996 INFO [main] o.springframework.cloud.context.scope.GenericScope BeanFactory id=f798b9b3-4f34-3690-880a-3cc82d444d43 -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-02-06T16:24:07.431 WARN [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker Bean 'org.zalando.problem.spring.web.autoconfigure.security.ProblemSecurityAutoConfiguration' of type [org.zalando.problem.spring.web.autoconfigure.security.ProblemSecurityAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [problemSecurityBeanPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-02-06T16:24:07.895 INFO [main] o.s.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port 8087 (http) -2026-02-06T16:24:07.942 INFO [main] o.s.b.w.s.c.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 3570 ms -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-Feb-06 16:24:08.144 WARN [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration$DeferringLoadBalancerInterceptorConfig' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration$DeferringLoadBalancerInterceptorConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [lbRestClientPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. -2026-Feb-06 16:24:08.148 WARN [restartedMain] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'deferringLoadBalancerInterceptor' of type [org.springframework.cloud.client.loadbalancer.DeferringLoadBalancerInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected/applied to a currently created BeanPostProcessor [lbRestClientPostProcessor]? Check the corresponding BeanPostProcessor declaration and its dependencies/advisors. If this bean does not have to be post-processed, declare it with ROLE_INFRASTRUCTURE. -2026-02-06T16:24:08.422 WARN [main] org.hibernate.orm.deprecation HHH90000021: Encountered deprecated setting [hibernate.temp.use_jdbc_metadata_defaults], use [hibernate.boot.allow_jdbc_metadata_access] instead -2026-02-06T16:24:08.432 WARN [main] org.hibernate.orm.deprecation HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-02-06T16:24:08.550 INFO [main] u.g.h.r.c.d.configuration.ApplicationConfiguration HttpClient Configuration: -maxTotalHttpClient: 100, -maxSecondsIdleConnection: 120, -maxClientPerRoute: 20, -validateAfterInactivity: 2000, -connectionReadTimeout: 30000, -connectionTimeout: 10000 -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-02-06T16:24:08.643 INFO [main] o.s.boot.web.servlet.RegistrationBean Filter deRegisterServiceAuthFilter was not registered (disabled) -2026-02-06T16:24:08.660 DEBUG [main] o.s.web.filter.ServerHttpObservationFilter Filter 'webMvcObservationFilter' configured for use -2026-02-06T16:24:08.731 DEBUG [main] org.springframework.web.client.RestTemplate HTTP GET https://idam-web-public.aat.platform.hmcts.net/o/.well-known/openid-configuration -2026-02-06T16:24:08.747 DEBUG [main] org.springframework.web.client.RestTemplate Accept=[application/json, application/yaml, application/*+json] -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-02-06T16:24:08.783 DEBUG [main] org.springframework.web.client.RestTemplate Response 200 OK -2026-02-06T16:24:08.786 DEBUG [main] org.springframework.web.client.RestTemplate Reading to [java.util.Map] -2026-02-06T16:24:09.117 WARN [main] o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2026-02-06T16:24:09.252 WARN [main] o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2026-02-06T16:24:09.262 INFO [main] org.flywaydb.core.internal.license.VersionPrinter Flyway Community Edition 8.5.13 by Redgate -2026-02-06T16:24:09.263 INFO [main] org.flywaydb.core.internal.license.VersionPrinter See what's new here: https://flywaydb.org/documentation/learnmore/releaseNotes#8.5.13 -2026-02-06T16:24:09.263 INFO [main] org.flywaydb.core.internal.license.VersionPrinter -2026-02-06T16:24:09.277 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-2 - Starting... -2026-02-06T16:24:09.364 INFO [main] com.zaxxer.hikari.pool.HikariPool HikariPool-2 - Added connection org.postgresql.jdbc.PgConnection@7fe4091c -2026-02-06T16:24:09.368 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-2 - Start completed. -2026-02-06T16:24:09.395 INFO [main] o.f.core.internal.database.base.BaseDatabaseType Database: jdbc:postgresql://localhost:6432/cft_task_db (PostgreSQL 16.11) -2026-02-06T16:24:09.431 WARN [main] org.flywaydb.core.internal.database.base.Database Flyway upgrade recommended: PostgreSQL 16.11 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 14. -2026-02-06T16:24:09.431 DEBUG [main] o.s.s.c.a.a.c.AuthenticationConfiguration$DefaultPasswordEncoderAuthenticationManagerBuilder No authenticationProviders and no parentAuthenticationManager defined. Returning null. -2026-02-06T16:24:09.482 INFO [main] org.flywaydb.core.internal.command.DbValidate Successfully validated 41 migrations (execution time 00:00.038s) -2026-02-06T16:24:09.501 INFO [main] org.flywaydb.core.internal.command.DbMigrate Current version of schema "cft_task_db": 1.0.40 -2026-02-06T16:24:09.502 INFO [main] org.flywaydb.core.internal.command.DbMigrate Schema "cft_task_db" is up to date. No migration necessary. -2026-02-06T16:24:09.554 INFO [main] o.h.e.t.jta.platform.internal.JtaPlatformInitiator HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2026-02-06T16:24:09.580 INFO [main] org.hibernate.jpa.internal.util.LogHelper HHH000204: Processing PersistenceUnitInfo [name: cft_task_db] -2026-02-06T16:24:09.609 INFO [main] org.hibernate.Version HHH000412: Hibernate ORM core version 6.6.1.Final -2026-Feb-06 16:24:09.619 INFO [restartedMain] u.g.h.r.p.Application - Application running locally, turning off SSL verification so that tests accessing HTTPS resources can run on machines with ZScaler proxy -2026-02-06T16:24:09.639 INFO [main] o.hibernate.cache.internal.RegionFactoryInitiator HHH000026: Second-level cache disabled -2026-02-06T16:24:09.701 DEBUG [main] o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator Database -> - name : PostgreSQL - version : 16.11 (Debian 16.11-1.pgdg13+1) - major : 16 - minor : 11 -2026-02-06T16:24:09.701 DEBUG [main] o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator Driver -> - name : PostgreSQL JDBC Driver - version : 42.7.7 - major : 42 - minor : 7 -2026-02-06T16:24:09.701 DEBUG [main] o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator JDBC version : 4.2 -2026-02-06T16:24:09.708 WARN [main] org.flywaydb.core.internal.database.base.Database Flyway upgrade recommended: PostgreSQL 16.11 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 14. -2026-02-06T16:24:09.714 DEBUG [main] o.h.engine.jdbc.env.spi.IdentifierHelperBuilder JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2026-02-06T16:24:09.722 INFO [main] org.hibernate.orm.connections.pooling HHH10001005: Database info: - Database JDBC URL [Connecting through datasource 'HikariDataSource (HikariPool-2)'] - Database driver: undefined/unknown - Database version: 12.0 - Autocommit mode: undefined/unknown - Isolation level: undefined/unknown - Minimum pool size: undefined/unknown - Maximum pool size: undefined/unknown -2026-02-06T16:24:09.751 WARN [main] org.flywaydb.core.internal.command.DbMigrate outOfOrder mode is active. Migration of schema "public" may not be reproducible. -2026-02-06T16:24:09.762 WARN [main] org.flywaydb.core.internal.command.DbMigrate outOfOrder mode is active. Migration of schema "public" may not be reproducible. -2026-02-06T16:24:09.891 INFO [main] o.s.o.j.persistenceunit.SpringPersistenceUnitInfo No LoadTimeWeaver setup: ignoring JPA class transformer -2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/webjars/**'], Ant [pattern='/webjars/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs'], Ant [pattern='/v3/api-docs']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.915 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs/**'], Ant [pattern='/v3/api-docs/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/info'], Ant [pattern='/info']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:09.916 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.025 WARN [main] org.hibernate.orm.deprecation HHH90000021: Encountered deprecated setting [hibernate.temp.use_jdbc_metadata_defaults], use [hibernate.boot.allow_jdbc_metadata_access] instead -2026-02-06T16:24:10.044 WARN [main] org.hibernate.orm.deprecation HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2026-02-06T16:24:10.143 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, OAuth2AuthorizationRequestRedirectFilter, ServiceAuthFilter, BearerTokenAuthenticationFilter, AuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, OAuth2AuthorizationCodeGrantFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2026-02-06T16:24:10.168 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui.html'], Ant [pattern='/swagger-ui.html']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/swagger-ui.html'], Ant [pattern='/swagger-ui.html']] -2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']] -2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']] -2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']] -2026-02-06T16:24:10.169 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.169 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/health'], Ant [pattern='/health']] -2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']] -2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']] -2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/status/health'], Ant [pattern='/status/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/status/health'], Ant [pattern='/status/health']] -2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']] -2026-02-06T16:24:10.170 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.170 DEBUG [main] o.s.security.web.DefaultSecurityFilterChain Will not secure Deferred [Mvc [pattern='/'], Ant [pattern='/']] -2026-02-06T16:24:10.303 INFO [main] org.flywaydb.core.internal.license.VersionPrinter Flyway Community Edition 8.5.13 by Redgate -2026-02-06T16:24:10.303 INFO [main] org.flywaydb.core.internal.license.VersionPrinter See what's new here: https://flywaydb.org/documentation/learnmore/releaseNotes#8.5.13 -2026-02-06T16:24:10.303 INFO [main] org.flywaydb.core.internal.license.VersionPrinter -2026-02-06T16:24:10.312 INFO [main] o.f.core.internal.resource.ResourceNameValidator 1 SQL migrations were detected but not run because they did not follow the filename convention. -2026-02-06T16:24:10.312 INFO [main] o.f.core.internal.resource.ResourceNameValidator If this is in error, enable debug logging or 'validateMigrationNaming' to fail fast and see a list of the invalid file names. -2026-02-06T16:24:10.317 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-4 - Starting... -2026-02-06T16:24:10.392 INFO [main] com.zaxxer.hikari.pool.HikariPool HikariPool-4 - Added connection org.postgresql.jdbc.PgConnection@32e5e2d5 -2026-02-06T16:24:10.394 INFO [main] com.zaxxer.hikari.HikariDataSource HikariPool-4 - Start completed. -2026-02-06T16:24:10.406 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'userInfoCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.418 INFO [main] o.f.core.internal.database.base.BaseDatabaseType Database: jdbc:postgresql://localhost:6432/datastore (PostgreSQL 16.11) -2026-02-06T16:24:10.486 WARN [main] org.flywaydb.core.internal.database.base.Database Flyway upgrade recommended: PostgreSQL 16.11 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 14. -2026-02-06T16:24:10.542 INFO [main] org.flywaydb.core.internal.command.DbValidate Successfully validated 15 migrations (execution time 00:00.042s) -2026-02-06T16:24:10.585 INFO [main] org.flywaydb.core.internal.command.DbMigrate Current version of schema "public": 20250306.0000 -2026-02-06T16:24:10.585 WARN [main] org.flywaydb.core.internal.command.DbMigrate outOfOrder mode is active. Migration of schema "public" may not be reproducible. -2026-02-06T16:24:10.587 INFO [main] org.flywaydb.core.internal.command.DbMigrate Schema "public" is up to date. No migration necessary. -2026-02-06T16:24:10.745 INFO [main] org.hibernate.jpa.internal.util.LogHelper HHH000204: Processing PersistenceUnitInfo [name: default] -2026-02-06T16:24:10.764 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'usersByOrganisationInternal' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'challengeQuestions' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'caaAccessTokenCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'usersByOrganisationExternal' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'systemUserAccessTokenCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.771 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'caseRoles' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.774 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'userInfoCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.774 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'organisationAddressById' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.774 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'nocApproverAccessTokenCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:10.798 INFO [main] org.hibernate.Version HHH000412: Hibernate ORM core version 6.6.41.Final -2026-02-06T16:24:10.862 INFO [main] o.hibernate.cache.internal.RegionFactoryInitiator HHH000026: Second-level cache disabled -2026-02-06T16:24:10.922 INFO [main] uk.gov.hmcts.reform.ccd.documentam.Application Started Application in 7.694 seconds (process running for 8.212) -2026-02-06T16:24:10.942 WARN [main] org.hibernate.orm.deprecation HHH90000021: Encountered deprecated setting [hibernate.temp.use_jdbc_metadata_defaults], use [hibernate.boot.allow_jdbc_metadata_access] instead -**** Cftlib application dgDocassemblyApi is ready **** 8 remaining -2026-02-06T16:24:10.947 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' -2026-02-06T16:24:10.949 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' -2026-02-06T16:24:10.953 WARN [main] org.hibernate.orm.deprecation HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2026-02-06T16:24:10.966 INFO [main] org.hibernate.orm.connections.pooling HHH10001005: Database info: - Database JDBC URL [undefined/unknown] - Database driver: undefined/unknown - Database version: 12.0 - Autocommit mode: undefined/unknown - Isolation level: - Minimum pool size: undefined/unknown - Maximum pool size: undefined/unknown -2026-02-06T16:24:10.996 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/webjars/**'], Ant [pattern='/webjars/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs'], Ant [pattern='/v3/api-docs']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/info'], Ant [pattern='/info']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:10.997 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:11.017 INFO [main] u.g.h.reform.ccd.documentam.StartupConfigPrinter Stream configurations: -DOWNLOAD_ENABLED: false -UPLOAD_ENABLED: false -**** Cftlib application unknown is ready **** 7 remaining -2026-02-06T16:24:11.110 INFO [main] o.h.m.internal.EntityInstantiatorPojoStandard HHH000182: No default (no-argument) constructor for class: uk.gov.hmcts.reform.wataskmanagementapi.repository.TaskResourceCustomRepositoryImpl$TaskSearchResult (class must be instantiated by Interceptor) -**** Cftlib application ccdUserProfileApi is ready **** 6 remaining -**** Cftlib application aacManageCaseAssignment is ready **** 5 remaining -2026-02-06T16:24:11.206 ERROR [main] o.s.b.c.p.migrator.PropertiesMigrationListener -The use of configuration keys that are no longer supported was found in the environment: - -Property source 'Config resource 'class path resource [application.yaml]' via location 'optional:classpath:/'': - Key: spring.cloud.gateway.mvc.http-client.type - Line: 61 - Reason: none - -Property source 'applicationConfig: [classpath:/application.yaml]': - Key: spring.cloud.gateway.mvc.http-client.type - Line: 61 - Reason: none - - -Please refer to the release notes or reference guide for potential alternatives. - -2026-02-06T16:24:11.207 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' -2026-02-06T16:24:11.207 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' -2026-02-06T16:24:11.460 WARN [main] org.hibernate.mapping.RootClass HHH000038: Composite-id class does not override equals(): uk.gov.hmcts.ccd.data.caseaccess.CaseUserEntity$CasePrimaryKey -2026-02-06T16:24:11.460 WARN [main] org.hibernate.mapping.RootClass HHH000039: Composite-id class does not override hashCode(): uk.gov.hmcts.ccd.data.caseaccess.CaseUserEntity$CasePrimaryKey -2026-02-06T16:24:11.471 INFO [main] o.h.e.t.jta.platform.internal.JtaPlatformInitiator HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2026-02-06T16:24:11.478 INFO [main] o.s.orm.jpa.LocalContainerEntityManagerFactoryBean Initialized JPA EntityManagerFactory for persistence unit 'cft_task_db' -2026-02-06T16:24:11.672 INFO [main] u.g.h.r.r.config.EnvironmentConfiguration ras.environment used value: pr -2026-02-06T16:24:11.859 INFO [main] com.launchdarkly.sdk.server.LDClient.DataSource Enabling streaming API -2026-02-06T16:24:11.863 INFO [main] com.launchdarkly.sdk.server.LDClient Waiting up to 5000 milliseconds for LaunchDarkly client to start... -2026-02-06T16:24:11.896 INFO [main] o.h.e.t.jta.platform.internal.JtaPlatformInitiator HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2026-02-06T16:24:12.114 INFO [LaunchDarkly-streaming] com.launchdarkly.sdk.server.LDClient.DataSource Initialized LaunchDarkly client. -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-02-06T16:24:12.441 INFO [main] o.s.data.jpa.repository.query.QueryEnhancerFactory Hibernate is in classpath; If applicable, HQL parser will be used. -2026-02-06T16:24:12.455 INFO [main] u.g.hmcts.reform.roleassignment.util.JacksonUtils Loaded 217 roles from drool -2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 -2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 -2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 -2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 -2026-02-06T16:24:12.459 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 30000 -2026-02-06T16:24:12.477 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration readTimeout: 30000 -2026-02-06T16:24:12.501 INFO [main] uk.gov.hmcts.ccd.config.CacheConfiguration Cache Configuration Parameters: -defaultMaxIdle (Default Cache Max Idle): 14400, -defaultCacheTtl (Default Cache TTL): 30, -userCacheTtl (User Cache TTL): 1800, -userRoleCacheTtl (User Role Cache TTL): 7200, -jurisdictionCacheTtl (Jurisdiction Cache TTL): 30, -systemUserTokenCacheTTLSecs (System User Token Cache TTL): 14400 -2026-02-06T16:24:12.676 WARN [main] o.d.compiler.kie.builder.impl.ClasspathKieProject Unable to find pom.properties in /home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/am-role-assignment-service/0.19.2017/3055b3db4a44bda3178f3aa0c86c49b30640171c/am-role-assignment-service-0.19.2017.jar -2026-02-06T16:24:12.676 WARN [main] o.d.compiler.kie.builder.impl.ClasspathKieProject Unable to load pom.properties from/home/ravi/.gradle/caches/modules-2/files-2.1/com.github.hmcts.rse-cft-lib/am-role-assignment-service/0.19.2017/3055b3db4a44bda3178f3aa0c86c49b30640171c/am-role-assignment-service-0.19.2017.jar -2026-02-06T16:24:12.676 WARN [main] o.d.compiler.kie.builder.impl.ClasspathKieProject Cannot find maven pom properties for this project. Using the container's default ReleaseId -2026-02-06T16:24:12.753 WARN [main] o.drools.compiler.kie.builder.impl.KieBuilderImpl File 'validationrules/prm/prm-role-mapping-validation.drl' is in folder 'validationrules/prm' but declares package 'validationrules.core'. It is advised to have a correspondance between package and folder names. -2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 -2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 -2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 -2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 -2026-02-06T16:24:12.758 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 20000 -2026-02-06T16:24:12.759 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration definitionStoreConnectionTimeout: 20000 -2026-02-06T16:24:12.778 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 -2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 -2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 -2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 -2026-02-06T16:24:12.779 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 5000 -2026-02-06T16:24:12.784 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 -2026-02-06T16:24:12.784 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 -2026-02-06T16:24:12.784 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 -2026-02-06T16:24:12.785 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 -2026-02-06T16:24:12.785 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 5000 -2026-02-06T16:24:12.911 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxTotalHttpClient: 100 -2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxSecondsIdleConnection: 120 -2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration maxClientPerRoute: 20 -2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration validateAfterInactivity: 2000 -2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration connectionTimeout: 30000 -2026-02-06T16:24:12.912 INFO [main] uk.gov.hmcts.ccd.RestTemplateConfiguration readTimeout: 30000 -2026-02-06T16:24:13.114 DEBUG [main] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver ControllerAdvice beans: 3 @ExceptionHandler, 1 ResponseBodyAdvice -2026-02-06T16:24:13.121 INFO [main] o.z.p.s.w.a.s.ProblemSecurityBeanPostProcessor Register HttpSecurity's exceptionHandling -2026-02-06T16:24:13.421 DEBUG [main] o.s.w.s.m.m.a.RequestMappingHandlerMapping 24 mappings in 'requestMappingHandlerMapping' -2026-02-06T16:24:13.466 DEBUG [main] o.s.web.servlet.handler.SimpleUrlHandlerMapping Patterns [/webjars/**, /**, /swagger-ui*/*swagger-initializer.js, /swagger-ui*/**] in 'resourceHandlerMapping' -2026-02-06T16:24:13.492 INFO [main] o.s.b.actuate.endpoint.web.EndpointLinksResolver Exposing 2 endpoints beneath base path '' -2026-02-06T16:24:13.495 INFO [main] io.searchbox.client.AbstractJestClient Setting server pool to a list of 1 servers: [http://localhost:9200] -2026-02-06T16:24:13.495 INFO [main] io.searchbox.client.JestClientFactory Using multi thread/connection supporting pooling connection manager -2026-02-06T16:24:13.510 INFO [main] io.searchbox.client.JestClientFactory Using custom GSON instance -2026-02-06T16:24:13.510 INFO [main] io.searchbox.client.JestClientFactory Node Discovery disabled... -2026-02-06T16:24:13.510 INFO [main] io.searchbox.client.JestClientFactory Idle connection reaping enabled... -2026-02-06T16:24:13.528 INFO [main] o.z.p.s.w.a.s.ProblemSecurityBeanPostProcessor Register HttpSecurity's exceptionHandling -2026-02-06T16:24:13.561 INFO [main] o.z.p.s.w.a.security.ProblemHttpConfigurer Register HttpSecurity's exceptionHandling -2026-02-06T16:24:13.566 DEBUG [main] org.springframework.web.client.RestTemplate HTTP GET https://idam-web-public.aat.platform.hmcts.net/o/.well-known/openid-configuration -2026-02-06T16:24:13.567 DEBUG [main] org.springframework.web.client.RestTemplate Accept=[application/json, application/yaml, application/*+json] -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-Feb-06 16:24:14.138 WARN [restartedMain] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger - Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. -2026-02-06T16:24:14.544 WARN [main] org.drools.mvel.MVELConstraint $roleName is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : get($roleName, $roleCategory, $roleType) != null -2026-02-06T16:24:14.547 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : attributesMatch($ra.attributes) -2026-02-06T16:24:14.550 WARN [main] org.drools.mvel.MVELConstraint $c is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $c.securityClassification != null -2026-02-06T16:24:14.553 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $ra.attributes["requestedRole"] != null -2026-02-06T16:24:14.554 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $ra.roleName == "specific-access-admin") -2026-02-06T16:24:14.569 WARN [main] org.drools.mvel.MVELConstraint $ra is not relevant to this pattern, so it causes class reactivity. Consider placing this constraint in the original pattern if possible : $ra.roleName == "specific-access-admin") -2026-Feb-06 16:24:15.257 INFO [restartedMain] u.g.h.r.p.Application - Started Application in 11.914 seconds (process running for 12.547) -**** Cftlib application prl-cos-api is ready **** 4 remaining -2026-Feb-06 16:24:15.264 INFO [scheduling-1] u.g.h.r.p.s.SystemUserService - Evicting system user cron cache -2026-02-06T16:24:16.674 DEBUG [main] org.springframework.web.client.RestTemplate Response 200 OK -2026-02-06T16:24:16.674 DEBUG [main] org.springframework.web.client.RestTemplate Reading to [java.util.Map] -2026-02-06T16:24:16.685 DEBUG [main] org.springframework.web.client.RestTemplate HTTP GET https://idam-web-public.aat.platform.hmcts.net/o/jwks -2026-02-06T16:24:16.685 DEBUG [main] org.springframework.web.client.RestTemplate Accept=[text/plain, application/json, application/yaml, application/*+json, */*] -2026-02-06T16:24:16.695 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/**'], Ant [pattern='/health/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/am/role-assignments/fetchFlagStatus'], Ant [pattern='/am/role-assignments/fetchFlagStatus']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger'], Ant [pattern='/swagger']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui.html'], Ant [pattern='/swagger-ui.html']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs/**'], Ant [pattern='/v3/api-docs/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/search/**'], Ant [pattern='/search/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/csrf'], Ant [pattern='/csrf']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/error'], Ant [pattern='/error']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/status/health'], Ant [pattern='/status/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/welcome'], Ant [pattern='/welcome']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.696 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:16.974 DEBUG [main] org.springframework.web.client.RestTemplate Response 200 OK -2026-02-06T16:24:16.975 DEBUG [main] org.springframework.web.client.RestTemplate Reading to [java.lang.String] as "application/json" -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/index.html'], Ant [pattern='/swagger-ui/index.html']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/**'], Ant [pattern='/v3/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.051 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/favicon.ico'], Ant [pattern='/favicon.ico']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:17.122 DEBUG [main] o.s.w.s.m.m.a.RequestMappingHandlerAdapter ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2026-02-06T16:24:17.261 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'task_types_dmn' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:17.261 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'task_types' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:17.261 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'calendar_cache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:18.325 INFO [main] org.springframework.cloud.commons.util.InetUtils Cannot determine local hostname -**** Cftlib application ccdDataStoreApi is ready **** 3 remaining -2026-02-06T16:24:18.378 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' -2026-02-06T16:24:18.378 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' -2026-02-06T16:24:18.390 INFO [main] o.s.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port 8087 (http) with context path '/' -2026-02-06T16:24:18.530 INFO [main] u.g.h.r.roleassignment.RoleAssignmentApplication Started RoleAssignmentApplication in 15.303 seconds (process running for 15.82) -2026-02-06T16:24:18.570 INFO [main] u.gov.hmcts.reform.wataskmanagementapi.Application Started Application in 15.303 seconds (process running for 15.86) -**** Cftlib application waTaskManagementApi is ready **** 2 remaining -2026-02-06T16:24:18.580 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_1_1 is set to: true -2026-02-06T16:24:18.582 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_jrd_1_0 is set to: true -2026-02-06T16:24:18.584 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag ccd_bypass_1_0 is set to: true -2026-02-06T16:24:18.585 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_specific_1_0 is set to: true -2026-02-06T16:24:18.586 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag iac_challenged_1_0 is set to: true -2026-02-06T16:24:18.588 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag wa_bypass_1_0 is set to: true -2026-02-06T16:24:18.589 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag sscs_wa_1_0 is set to: true -2026-02-06T16:24:18.591 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag sscs_challenged_1_0 is set to: true -2026-02-06T16:24:18.592 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag sscs_case_allocator_1_0 is set to: true -2026-02-06T16:24:18.594 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag ga_prm_1_0 is set to: true -2026-02-06T16:24:18.595 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag disposer_1_0 is set to: true -2026-02-06T16:24:18.597 INFO [main] u.g.h.r.roleassignment.config.DBFlagConfigurtion The DB feature flag all_wa_services_case_allocator_1_0 is set to: true -2026-02-06T16:24:18.598 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' -**** Cftlib application unknown is ready **** 1 remaining -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-resources/**'], Ant [pattern='/swagger-resources/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/swagger-ui/**'], Ant [pattern='/swagger-ui/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/webjars/**'], Ant [pattern='/webjars/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs'], Ant [pattern='/v3/api-docs']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v3/api-docs/**'], Ant [pattern='/v3/api-docs/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/v2/**'], Ant [pattern='/v2/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health'], Ant [pattern='/health']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/liveness'], Ant [pattern='/health/liveness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/health/readiness'], Ant [pattern='/health/readiness']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/'], Ant [pattern='/']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/loggers/**'], Ant [pattern='/loggers/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.606 WARN [main] o.s.s.config.annotation.web.builders.WebSecurity You are asking Spring Security to ignore Deferred [Mvc [pattern='/api/testing-support/**'], Ant [pattern='/api/testing-support/**']]. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead. -2026-02-06T16:24:18.825 WARN [main] i.m.c.instrument.binder.cache.CaffeineCacheMetrics The cache 'userInfoCache' is not recording statistics. No meters except 'cache.size' will be registered. Call 'Caffeine#recordStats()' prior to building the cache for metrics to be recorded. -2026-02-06T16:24:20.360 INFO [main] u.g.h.ccd.definition.store.CaseDataAPIApplication Started CaseDataAPIApplication in 17.129 seconds (process running for 17.65) -2026-02-06T16:24:20.364 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /v3/api-docs endpoint is enabled by default. To disable it in production, set the property 'springdoc.api-docs.enabled=false' -2026-02-06T16:24:20.364 WARN [main] org.springdoc.core.events.SpringDocAppInitializer SpringDoc /swagger-ui.html endpoint is enabled by default. To disable it in production, set the property 'springdoc.swagger-ui.enabled=false' -**** Cftlib application ccdDefinitionStoreApi is ready **** 0 remaining -2026-02-06T16:24:20.466 INFO [http-nio-4451-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet' -2026-02-06T16:24:20.468 INFO [http-nio-4451-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 2 ms -2026-02-06T16:24:20.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.ElasticsearchIndexController Creating Elasticsearch index for Global search. -2026-02-06T16:24:20.610 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient alias global_search exists: true -2026-02-06T16:24:20.611 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of most recent index for alias global_search -2026-02-06T16:24:20.614 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient found following indexes for alias global_search: [global_search-000001] -2026-02-06T16:24:20.615 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of index global_search-000001 -2026-02-06T16:24:20.650 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient mapping upserted: true -2026-02-06T16:24:20.650 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient Closing the ES REST client -2026-02-06T16:24:21.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.service.ProcessUploadServiceImpl Importing Definition file... -2026-02-06T16:24:23.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: Jurisdiction PRIVATELAW : OK -2026-02-06T16:24:23.549 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.ListFieldTypeParser List types parsing: OK: 855 types parsed -2026-02-06T16:24:48.434 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/query method: POST -2026-02-06T16:24:48.443 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 0 -2026-02-06T16:24:48.679 INFO [*** ***CFT lib***] u.g.h.r.r.c.endpoints.QueryAssignmentController Inside Single query request method -2026-02-06T16:24:48.893 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=88604f0d-0d34-4209-ac0b-866303d9046e. Roles=[jrd-admin, jrd-system-user, idam-service-account, cwd-system-user]. -2026-02-06T16:24:48.893 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:24:48.890779933,operationType:Search assignments,assignmentSize:219,invokingService:xui_webapp,endpointCalled:/am/role-assignments/query,operationalOutcome:200,authenticatedUserId:88604f0d-0d34-4209-ac0b-866303d9046e,responseTime:146 -2026-02-06T16:25:42.184 INFO [validate-exec-2] u.g.h.c.d.s.excel.parser.ComplexFieldTypeParser Validation has been completed successfully! -2026-02-06T16:25:42.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.ComplexFieldTypeParser Complex types parsing: OK: 2470 types parsed, including 242 complex -2026-02-06T16:25:42.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldTypeParser Case field types parsing: OK: 2257 types parsed -2026-02-06T16:25:44.843 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: Field types: OK: 1483 field types imported -2026-02-06T16:25:44.872 WARN [*** ccdDefinitionStoreApi] org.hibernate.engine.spi.ActionQueue The batch containing 7146 statements could not be sorted. This might indicate a circular entity relationship. -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[APPLICANTSOLICITOR]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR1]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR2]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR3]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR4]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTSOLICITOR5]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR1]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR2]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR3]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR4]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTSOLICITOR5]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401APPLICANTSOLICITOR]': OK -2026-02-06T16:25:44.884 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401RESPONDENTSOLICITOR]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[CREATOR]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER1]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER2]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER3]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER4]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100APPLICANTBARRISTER5]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER1]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER2]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER3]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER4]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[C100RESPONDENTBARRISTER5]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401APPLICANTBARRISTER]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': Parsing case role '[FL401RESPONDENTBARRISTER]': OK -2026-02-06T16:25:44.885 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseRoleParser Parsing case roles for case type 'PRLAPPS': OK: 26 case roles parsed -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndCafcassOfficers: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field testCaseName: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteHeaderCaseNameText: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteHeaderCaseName: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field subject: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNote: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNotes: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteLink: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addCaseNoteTable: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeLegalRepHeader: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeLegalRepAndPartiesList: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeLegalRepInfo: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmYesNo: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmDomesticAbuseYesNo: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmChildAbductionYesNo: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmChildAbuseYesNo: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmHint: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmLabel: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmSubstanceAbuseYesNo: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmSubstanceAbuseDetails: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmOtherConcerns: OK -2026-02-06T16:25:44.887 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmOtherConcernsDetails: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationOfHarmOrdersLabel: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationOfHarmOrdersLabelDetail: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestation: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationDateIssued: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationEndDate: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationCurrent: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationCourtName: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationCaseNumber: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersNonMolestationDocument: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupation: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationDateIssued: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationEndDate: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationCurrent: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationCourtName: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationCaseNumber: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOccupationDocument: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtection: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionDateIssued: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionEndDate: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionCurrent: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionCourtName: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionCaseNumber: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersForcedMarriageProtectionDocument: OK -2026-02-06T16:25:44.888 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestraining: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingDateIssued: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingEndDate: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingCurrent: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingCourtName: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingCaseNumber: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersRestrainingDocument: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctive: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveDateIssued: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveEndDate: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveCurrent: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveCourtName: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveCaseNumber: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersOtherInjunctiveDocument: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlace: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceDateIssued: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceEndDate: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceCurrent: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceCourtName: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceCaseNumber: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newOrdersUndertakingInPlaceDocument: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseBehavioursLabel: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseBehavioursLabel: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductionLabel: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field othersConcernsLabel: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseBehavioursSubLabel: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseBehavioursSubLabel: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticBehaviours: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseBehavioursDocmosis: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuses: OK -2026-02-06T16:25:44.889 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newChildAbductionReasons: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newPreviousAbductionThreats: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newPreviousAbductionThreatsDetails: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newChildrenLocationNow: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionPassportOfficeNotified: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionPreviousPoliceInvolvement: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionPreviousPoliceInvolvementDetails: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAbductionChildHasPassport: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmOtherConcernsCourtActions: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAllegationsOfHarmChildContactLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAgreeChildUnsupervisedTime: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAgreeChildSupervisedTime: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newAgreeChildOtherContact: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPhysicalAbuseLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPhysicalAbuseSubLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPhysicalAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPsychologicalAbuseLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPsychologicalAbuseSubLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPsychologicalAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childSexualAbuseLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childSexualAbuseSubLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childSexualAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childEmotionalAbuseLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childEmotionalAbuseSubLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childEmotionalAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childFinancialAbuseLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childFinancialAbuseSubLabel: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childFinancialAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskPhysicalAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskPsychologicalAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskSexualAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskEmotionalAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whichChildrenAreRiskFinancialAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskPhysicalAbuse: OK -2026-02-06T16:25:44.890 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskPsychologicalAbuse: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskSexualAbuse: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskEmotionalAbuse: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allChildrenAreRiskFinancialAbuse: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudeLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeInfo: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSpecificJudgeOrLegalAdviserNeeded: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isJudgeOrLegalAdviser: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNameAndEmail: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalAdviserList: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tierOfJudiciary: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tierOfJudge: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ApplicationPaymentLinkLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabCaseNameLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtDetails: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabHearingUrgencyLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingUrgencyTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabApplicantDetailsLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabRespondentDetailsLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabDeclarationLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field declarationTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildRevisedLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabTypeOfApplicationLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplicationTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401TypeOfApplicationTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAllegationsOfHarmLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAllegationsOfHarmRevisedLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOverviewTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedOverviewTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabMiamLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPolicyUpgradeTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPolicyUpgradeExemptionsTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherProceedingsLabel: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsDetailsTable: OK -2026-02-06T16:25:44.891 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabInternationalElementLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internationalElementTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAttendingTheHearingLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field attendingTheHearingTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabLitigationCapacityLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabWelshLanguageRequirementsLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirementsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabAllegationsOfHarmDetailsLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOrdersTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedOrdersTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmDomesticAbuseTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildAbductionTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedChildAbductionTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedOtherConcernsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherPeopleInTheCaseLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherPeopleRevisedInTheCaseLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedChildContactTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeopleInTheCaseTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeopleInTheCaseRevisedTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabOtherChildNotInTheCaseLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherChildNotInTheCaseTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildAndApplicantsRelationLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantsRelationTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildAndRespondentRelationLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelationsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTabChildAndOtherPeopleRelationLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelationsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsRevisedTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsRevisedExtraTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsExtraTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantFamilyTableLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantFamilyTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childInfoTableLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childInfoTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childToBeProtectedTableLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childToBeProtectedTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ApplicantTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401SolicitorLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401SolicitorDetailsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeDetailsTable: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeDetailsTableLabel: OK -2026-02-06T16:25:44.892 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBehaviourTableLabel: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBehaviourTable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withoutNoticeOrderTableLabel: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withoutNoticeOrderTable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401RespondentTable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field relationshipToRespondentTableLabel: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field relationshipToRespondentTable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401OtherProceedingsDetailsTable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isHomeEntered: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ChildDetailsTableLabel: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ChildDetailsTable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fL401ApplicationTabDeclarationLabel: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFeesDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedDATable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmRevisedCATable: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewByDate: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awaitingInformationReasonList: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenAwpPayments: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfRequestedForAdditionalApplicationsFlag: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedBarrister: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field coverLetter: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field coverPageAddress: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field coverPagePartyName: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScanCaseReference: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field scannedDocuments: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field evidenceHandled: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScanEnvelopes: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildConfidentiality: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildInternationalElements: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildReasonableAdjustments: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildTypeOfOrder: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildHearingWithoutNotice: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildOtherProceedings: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildReturnUrl: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildMaim: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDocumentsCopy: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildHearingUrgency: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildChildDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildApplicantDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildRespondentDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildOtherChildrenDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildOtherPersonsDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsMiam: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantConsentMiam: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPreviousAttendanceChecklist1: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamOtherGroundsChecklist1: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paymentReferenceNumber: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildSafetyConcerns: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildScreeningQuestions: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildHelpWithFeesDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildConsentOrderDetails: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildStatementOfTruth: OK -2026-02-06T16:25:44.893 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100RebuildChildPostCode: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFeesReferenceNumber: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noOfDaysRemainingToSubmitCase: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantPcqId: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1ADocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1AWelshDocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1ADraftDocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c1AWelshDraftDocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8Document: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8WelshDocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8WelshDraftDocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8DraftDocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8ArchivedDocument: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassDateTime: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor1ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor2ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor3ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor4ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor5ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty1ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty2ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty3ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty4ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty5ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor1ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor2ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor3ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor4ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor5ExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field flagLauncherExternal: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantSolicitorExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentSolicitorExternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister1InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister2InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister3InternalFlags: OK -2026-02-06T16:25:44.894 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister4InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister5InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister1ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister2ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister3ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister4ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantBarrister5ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor1InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor2InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor3InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor4InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicantSolicitor5InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty1InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty2InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty3InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty4InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caOtherParty5InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor1InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor2InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor3InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor4InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentSolicitor5InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister1InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister2InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister3InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister4InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister5InternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister1ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister2ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister3ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister4ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondentBarrister5ExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field flagLauncherInternal: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCaseFlagsTaskCreated: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantInternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantBarristerInternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantBarristerExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantSolicitorInternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentInternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentBarristerInternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentBarristerExternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentSolicitorInternalFlags: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedReviewLangAndSmReq: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isReviewLangAndSmReqReviewed: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createBundleTransitionDetails: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bundleInformation: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createBundleSubmitLabel: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bundleCreationSubmittedWhatHappensNext: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bundleCreationSubmittedWhatHappensNextLabel: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtName: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtSeal: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskList: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListLabel: OK -2026-02-06T16:25:44.895 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListReturn: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListReturnLabel: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseHistory: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantName: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childName: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentName: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelPleaseUploadDocuments: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelDocumentsRequired: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelContactOrResidenceOrder: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelC8FormForConfidentiality: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelUploadOtherDocuments: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field contactOrderDocumentsUploaded: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8FormDocumentsUploaded: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocumentsUploaded: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelLanguageRequirements: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isWelshNeeded: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshNeeds: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401WelshNeeds: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isInterpreterNeeded: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field interpreterNeeds: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelAccessibility: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isDisabilityPresent: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelAdjustmentsRequired: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field adjustmentsRequired: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelSpecialArrangements: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelSpecialArrangementsDescription: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSpecialArrangementsRequired: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelSpecialArrangementsRequired: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangementsRequired: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelIntermediaryDescription: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isIntermediaryNeeded: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsForIntermediary: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersApplyingFor: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfChildArrangementsOrder: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraConsentOrderNotification: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field natureOfOrderLabel: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field natureOfOrder: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraWhyMakingApplication: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraWhyMakingApplication2: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationPermissionRequired: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationPermissionRequiredReason: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraApplicationDetails: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationDetails: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuse: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbduction: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuse: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field drugsAlcoholSubstanceAbuse: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safetyWelfareConcerns: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraChildAbduction: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAtRiskOfAbduction: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field policeNotified: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childHasPassport: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductedBefore: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childHasMultiplePassports: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPassportPossession: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPassportPossessionOtherDetails: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductionDetails: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPoliceInvolved: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPoliceInvolvedDetails: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAtRiskOfAbductionReason: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childWhereabouts: OK -2026-02-06T16:25:44.896 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paraChildAbuse: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexually: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyDetails: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyStartDate: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyOngoing: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseSexuallyHelpSought: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysically: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyDetails: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyStartDate: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyOngoing: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbusePhysicallyHelpSought: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinancially: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyDetails: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyStartDate: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyOngoing: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseFinanciallyHelpSought: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomestic: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticDetails: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticStartDate: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticOngoing: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbuseDomesticHelpSought: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuse: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseDetails: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseStartDate: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseOngoing: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDrugsAlcoholSubstanceAbuseHelpSought: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherSafetyOrWelfareConcerns: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherSafetyOrWelfareConcernsDetails: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelWhereChildrenLive: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenAddress: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childPassportDetails: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelChildren: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field children: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelChildrenAdditionalQuestions: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isChildrenKnownToAuthority: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndLocalAuthority: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isChildrenUnderChildProtection: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isChildrenWithSameParents: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentsAndTheirChildren: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentalResponsibilities: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whoChildrenLiveWith: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAddressAndAdultsLivingWith: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelOtherCourtCases: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isExistingProceedings: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenInProceeding: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field existingProceedings: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field existingProceedingsWithDoc: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelTheApplicants: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicants: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplication: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantsFL401: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelTheRespondents: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondents: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentsFL401: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelOthersToNotify: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field othersToNotify: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPartyInTheCaseRevised: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field labelOtherChildren: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherChildren: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantAttendedMIAMLabel: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantAttendedMiam: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field claimingExemptionMIAMLabel: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field claimingExemptionMiam: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsLabel: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorMIAMLabel: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorMiam: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsSelectAll: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionsChecklist: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDomesticViolenceLabel: OK -2026-02-06T16:25:44.897 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDomesticViolenceSelectAll: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamDomesticViolenceChecklist: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamChildProtectionConcernLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamChildProtectionConcernList: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamUrgencyReasonLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamUrgencyReasonSelectAll: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamUrgencyReasonChecklist: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPreviousAttendanceLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPreviousAttendanceChecklist: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamOtherGroundsLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamOtherGroundsChecklist: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mediatorRegistrationNumber: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorServiceName: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soleTraderName: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageMessage: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationDocumentUpload: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageLabel1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mediatorRegistrationNumber1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familyMediatorServiceName1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soleTraderName1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationPageMessage1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamCertificationDocumentUpload1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field consentOrder: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftConsentOrderFile: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCaseUrgent: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseUrgencyTimeAndReason: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field effortsMadeWithRespondents: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouNeedAWithoutNoticeHearing: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsForApplicationWithoutNotice: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouRequireAHearingWithReducedNotice: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field setOutReasonsBelow: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field areRespondentsAwareOfProceedings: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFeesNotAvailable: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantCaseName: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantOrRespondentCaseName: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseTypeOfApplicationLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field CaseAccessCategory: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseFromCourtNav: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedCaseTypeID: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseTypeOfApplication: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ConfidentialityDisclaimerLabel1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field state: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityStatementDisclaimer: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100ConfidentialityDisclaimerLabel1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100SelectFamilyCourtLabel1: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100ConfidentialityStatementDisclaimer: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityFactors: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityReferrals: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityOtherFactors: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field litigationCapacityOtherFactorsDetails: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field habitualResidentInOtherState: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field jurisdictionIssue: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestToForeignAuthority: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field habitualResidentInOtherStateGiveReason: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field jurisdictionIssueGiveReason: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestToForeignAuthorityGiveReason: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirement: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirementApplication: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field languageRequirementApplicationNeedWelsh: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field welshLanguageRequirementApplicationNeedEnglish: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsAdditionalQuestionsLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenKnownToLocalAuthority: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenKnownToLocalAuthorityTextArea: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenSubjectOfChildProtectionPlan: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmHint: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmYesNo: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmLabel: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmDomesticAbuseYesNo: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildAbductionYesNo: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildAbuseYesNo: OK -2026-02-06T16:25:44.898 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmSubstanceAbuseYesNo: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsYesNo: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field physicalAbuseVictim: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emotionalAbuseVictim: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field psychologicalAbuseVictim: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sexualAbuseVictim: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field financialAbuseVictim: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAbductionReasons: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previousAbductionThreats: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previousAbductionThreatsDetails: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenLocationNow: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPassportOfficeNotified: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionChildHasPassport: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionChildPassportPosession: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionChildPassportPosessionOtherDetail: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPreviousPoliceInvolvement: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionPreviousPoliceInvolvementDetails: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionOtherSafetyConcerns: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionOtherSafetyConcernsDetails: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abductionCourtStepsRequested: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field behaviours: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmOrdersLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmOrdersLabelDetail: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestation: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupation: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtection: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestraining: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctive: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlace: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationDateIssued: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationEndDate: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationCurrent: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationCourtName: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNonMolestationDocument: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationDateIssued: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationEndDate: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationCurrent: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationCourtName: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOccupationDocument: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionDateIssued: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionEndDate: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionCurrent: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionCourtName: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersForcedMarriageProtectionDocument: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingDateIssued: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingEndDate: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingCurrent: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingCourtName: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersRestrainingDocument: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveDateIssued: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveEndDate: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveCurrent: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveCourtName: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersOtherInjunctiveDocument: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceDateIssued: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceEndDate: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceCurrent: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceCourtName: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersUndertakingInPlaceDocument: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcerns: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsDetails: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmOtherConcernsCourtActions: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationsOfHarmChildContactLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field agreeChildUnsupervisedTime: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field agreeChildSupervisedTime: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field agreeChildOtherContact: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previousOrOngoingProceedingsForChildren: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field downloadApplicationLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkToDownloadApplicationLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100draftOrderDocLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401draftOrderDocLabel: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderDoc: OK -2026-02-06T16:25:44.899 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field id: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDeclaration: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayAgreeStmtLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorName: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayAgreeSignStmtLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field payAgreeStatement: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAgreeStatement: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayNextPage: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayNextPageDesc: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayFee: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field feeAmount: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplication: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplicationLinkLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100submitAndPayDownloadApplicationLinkLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpWithFees: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field viewPDFlinkLabelText: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field viewPDFlinkLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplicationLink: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceRequest: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paymentCallbackServiceRequestUpdate: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field paymentServiceRequestReferenceNumber: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentRelationObject: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentRelationDateInfoObject: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentRelationOptions: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectReasonLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returningAnApplicationLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returningAnApplicationText: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectReason: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401RejectReason: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returnMessageLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returnMessage: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field familymanCaseNumber: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localCourtHint: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localCourtAdmin: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field userInfo: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseworkerEmailAddress: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantSolicitorEmailAddress: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalDocument: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field issueDate: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantsConfidentialDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenConfidentialDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentConfidentialDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ChildrenConfidentialDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field TestField: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBehaviourData: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplicationOrders: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfApplicationLinkToCA: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantFamilyDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantChildDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderWithoutGivingNoticeToRespondent: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForOrderWithoutGivingNotice: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bailDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anyOtherDtailsForWithoutNoticeOrder: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field home: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateSubmitted: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo1: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo2: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo3: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo4: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo5: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo6: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo7: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo8: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401OtherProceedingDetails: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityDisclaimer: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401StmtOfTruth: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ConfidentialityCheck: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtEmailAddress: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingUrgencyLabel: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isNotificationSent: OK -2026-02-06T16:25:44.900 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCourtEmailFound: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSolicitorName: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isDocumentGenerated: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSolicitorOrgName: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitCountyCourtSelectionLabel: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitCountyCourtSelection: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantOrganisationPolicy: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantAge: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialCourtName: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseOrigin: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavApproved: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hasDraftOrder: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field numberOfAttachments: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSubmittedTimeStamp: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateSubmittedAndTime: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseCreatedBy: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsApplyingFor: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfC2Application: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicantsList: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field temporaryOtherApplicationsBundle: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field temporaryC2Document: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseFlags: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadC2Link: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsBundle: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCafcass: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createdDate: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field lastModifiedDate: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassUploadedDocs: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isAddCaseNumberAdded: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationFeesToPay: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationFeesToPayText: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsHelpWithFees: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsHelpWithFeesNumber: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfRequestedForAdditionalApplications: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field representedPartyType: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field taskListVersion: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isInHearingState: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isInvokedFromTask: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isNonWorkAllocationEnabledCourtSelected: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nextHearingDate: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantContactInstructions: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field loggedInUserRole: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNoteId: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field TTL: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field componentLauncher: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orders: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersSubmittedWithApplication: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field approvedOrders: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field standardDirectionsOrder: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transcriptsOfJudgements: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field magistratesFactsAndReasons: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNotesFromHearing: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field preliminaryDocuments: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field positionStatements: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fm5Statements: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applications: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantDocuments: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantApplication: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantC1AApplication: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantC1AResponse: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationsWithinProceedings: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationsWithinProceedingsRes: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field MIAMCertificate: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field prevOrdersSubmittedWithAppl: OK -2026-02-06T16:25:44.901 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDocuments: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentApplication: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersFromOtherProceedings: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentC1AApplication: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentC1AResponse: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationsFromOtherProceedings: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field witnessStatementAndEvidence: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantStatements: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentStatements: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherWitnessStatements: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pathfinder: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localAuthorityOtherDoc: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field CAFCASSReportAndGuardian: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childImpactReport1: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childImpactReport2: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingLetter: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field section7Report: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field 16aRiskAssessment: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field guardianReport: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialGuardianshipReport: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocs: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field localAuthorityDocuments: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field section37Report: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sec37Report: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field expertReport: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field medicalReports: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field DNAReports_expertReport: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field resultsOfHairStrandBloodTests: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field policeDisclosures: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field medicalRecords: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field drugAndAlcoholTest(toxicology): OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field policeReport: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondentToAndFromCourt: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailsToCourt: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field publicFundingCertificates: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noticesOfActingDischarge: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestForFASFormsToChange: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field witnessAvailability: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field lettersOfComplaint: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field SPIPReferralRequests: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeOfficeDWPResponses: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internalCorrespondence: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocments: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field impInfoAboutAddrContact: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field privacyNotice: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialMeasures: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field attendingTheHearing: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noticeOfHearing: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtBundle: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSummary: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidential: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anyOtherDoc: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrders: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c8ArchivedDocuments: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseInvites: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseLinks: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseLinksTabTitle: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field maintainCaseLinksFlag: OK -2026-02-06T16:25:44.902 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseLinksFlag: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field LinkedCasesComponentLauncher: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field newChildDetails: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field buffChildAndApplicantRelations: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantRelations: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantRelationsLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndApplicantRelationsSubLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field buffChildAndOtherPeopleRelations: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelations: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelationsLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndOtherPeopleRelationsSubLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field buffChildAndRespondentRelations: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelations: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelationsLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childAndRespondentRelationsSubLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenResponseC7DocumentList: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenUploadedDocumentList: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeopleKnowYourContactDetails: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentiality: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityList: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recordChildrenLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closeCaseLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheDecisionAboutAllChildren: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childOptionsForFinalDecision: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addDecisionLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateFinalDecisionWasMade: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalOutcomeForChildren: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalOutComeLabel: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalCaseClosedDate: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseClosed: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedRespondentPack: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unservedCitizenRespondentPack: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedApplicantPack: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedOthersPack: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedLaPack: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialCheckFailed: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationServedYesNo: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectionReason: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedCafcassCymruPack: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isC8CheckApproved: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityCheckWarningText: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAC8EngDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAC8WelDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respBC8EngDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respBC8WelDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respCC8EngDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respCC8WelDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDC8EngDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDC8WelDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respEC8EngDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respEC8WelDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appAC8RefugeDocument: OK -2026-02-06T16:25:44.903 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appBC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appCC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appDC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appEC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respBC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respCC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respEC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherAC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherBC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherCC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherEC8RefugeDocument: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtId: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForAmendCourtDetails: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cantFindCourtCheck: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anotherCourt: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transferredCourtFrom: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForTransferToAnotherCourt: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonForTransferToAnotherCourtDa: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field anotherReasonToTransferDetails: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transferCourtWarning: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtDetailsLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401Doc1: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401Doc2: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCourtNavCase: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavUploadedDocs: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deleteApplicationNote: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deletionConsent: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dfjArea: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field swanseaDFJCourt: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field humbersideDFJCourt: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field essexAndSuffolkDFJCourt: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field wolverhamptonDFJCourt: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isEngDocGen: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isWelshDocGen: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field accessCodeNotifications: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderOptions: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderCollection: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c43Label: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c43LabelBold: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderCollectionId: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassOrCafcassCymruLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioSafeGuardingOnIssueLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassSafeguardingIssue: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioSafeGuardingOnIssueCymruLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassCymruSafeguardingIssue: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDirectionsCaseNeedsLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPreamblesList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingsAndNextStepsList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCafcassOrCymruList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCourtList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioOtherList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFurtherList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioListLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCourtLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationCourtDynamicList: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationReason: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferApplicationSpecificReason: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingsAndNextStepsLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCaseReviewLabel: OK -2026-02-06T16:25:44.904 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCaseReviewAtSecondGateKeeping: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationDecisionLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioNextStepsAllocationTo: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocateNamedJudgeLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioApplicationIsReservedTo: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingPermissionLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingOn: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingTimeEstimate: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingCourtDynamicList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingBeforeAList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingPlaceLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingDate: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentBecauseLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentCheckList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFirstHearingUrgencyDetails: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentCourtConsider: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentTimeShortenedLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentTimeShortened: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentDayShortened: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentMustBeServedBy: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgentByWayOf: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedCourtLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedCheckList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioHearingUrgencyRefusedDetails: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeFirstHearingLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeApprovedApplicationLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeFirstHearingCheckList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeFirstHearingDetails: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeNotApprovedLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedCheckList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedDetails: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraHearingDisputeLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraStartDateTime: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraCourtDynamicList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraBeforeAList: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraByWayOf: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParticipationDirectionsLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParticipationDirections: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementDeadlineDate: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementWritten: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAttendanceAtMiamLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamAttendingPerson: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCourtToInterpretersLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPersonWhoRequiresInterpreter: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterDialectRequired: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUpdateContactDetailsLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUpdateContactDetails: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioNextStepJudgeName: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocateOrReserveJudge: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocateOrReserveJudgeName: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationMagistrateLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationDistJudgeLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocationCircuitJudgeLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioAllocatedToJudgeLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioReservedToJudgeLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingDirections: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFirstHearingUrgencyDetailLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingRefusedAnotherReasonLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeAnotherReasonLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingRefusedReasonLabel: OK -2026-02-06T16:25:44.905 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementOtherCheckDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementOtherCheckDetailsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPositionStatementOtherDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamAttendingPersonName: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamOtherDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamOtherCheckDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioMiamOtherDetailsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterOtherDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterOtherDetailsCheck: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioInterpreterOtherDetailsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityDetailsCheck: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityDetailsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferCourtDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferCourtDetailsCheck: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioTransferCourtDetailsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityLetterLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityName: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioLocalAuthorityReportSubmitByDate: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioOtherLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOfPapersLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOfPapersCaseNumbers: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParentWithCareLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioParentWithCare: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioApplicationToApplyPermissionLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioApplicationToApplyPermission: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOtherDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOtherDetailsCheck: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioDisclosureOtherDetailsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPreamblesLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioRightToAskCourtLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPartiesRaisedAbuseLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioRightToAskCourt: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPartiesRaisedAbuseCollection: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassOrCafcassCymruLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNextStepsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNextStepsCymruLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNewPartnerLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSafeGuardingNewPartnerCymruLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSectionReportOrChildImpactLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServe: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassNextStepEditContent: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassCymruFileAndServe: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassCymruNextStepEditContent: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcass: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassCymru: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7EditContent: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7ImpactAnalysisOptions: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7FactsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7FactsEditContent: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7daOccuredLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7daOccuredEditContent: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7ChildImpactAnalysis: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNameOfCouncil: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassCymruReportSentByDate: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartyToProvideDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartyToProvideDetailsCheck: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartyToProvideDetailsLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassCheck: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnersToCafcassLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7CheckDetails: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7Check: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSection7CheckLabel: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcass: OK -2026-02-06T16:25:44.906 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcassCymru: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcassText: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNewPartnerPartiesCafcassCymruText: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsCaseNeedsLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPreamblesList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPreamblesTempList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingsAndNextStepsList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingsAndNextStepsTempList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassOrCymruList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassOrCymruTempList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityTempList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCourtList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCourtTempList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocumentationAndEvidenceList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocumentationAndEvidenceTempList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFurtherList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoOtherList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoOtherTempList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFurtherDirectionDetails: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCourtLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationCourtDynamicList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationReason: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferApplicationSpecificReason: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationProhibitionLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEditContent: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationSittingBeforeOptions: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtDynamicList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationStartDateTime: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtHavingHeard: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx740Label: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx740: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationQualifiedLegalLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationQualifiedLegal: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferCourtDetails: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferCourtDetailsCheck: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoTransferCourtDetailsLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtDetails: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtCheck: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationCourtCheckLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx741Label: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCrossExaminationEx741: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocumentationAndEvidenceLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsDeadlineDate: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsSentTo: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCopiesSentTo: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCopiesSentToCafcass: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsMaximumPages: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpecifiedDocumentsLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpecifiedDocuments: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingPartiesDynamicList: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpipAttendanceLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSpipAttendance: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDisclosureLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHospitalRecordsDeadlineDate: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDisclosureUploadedBy: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpDeadlineDate: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpUploadedBy: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolDeadlineDate: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolUploadedBy: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsLabel: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsOption: OK -2026-02-06T16:25:44.907 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCheckDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCheck: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWitnessStatementsCheckLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsFilingCheck: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInstructionsDetailsLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscApplicantName: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscRespondentName: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoApplicantNameLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoRespondentNameLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscFilingDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscFilingCheck: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMedicalDiscDetailsLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGpApplicantName: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGpRespondentName: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGPApplicantNameLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoGPRespondentNameLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromGpDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromDiscGpCheck: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromDiscGpLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLsApplicantName: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLsRespondentName: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLSApplicantNameLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLSRespondentNameLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolCheck: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLetterFromSchoolCheckLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoScheduleOfAllegationsCheckLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisClosureProceedingDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisClosureProceedingCheck: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisClosureProceedingLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDocsEvidenceWitnessEvidence: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingsAndNextStepsLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationDecisionLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingPlaceLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamAttendanceLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForDraLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoJoiningInstructionsLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForFactFindingHearingLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoArrangeInterpretersLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUpdateContactDetailsLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterSecondGKLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingNotNeededLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParticipationDirectionsLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoJoiningInstructionsForRHLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterSecondGK: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSecondHearingDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAllocationTo: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingDate: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingTimeEstimate: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingCourtDynamicList: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentBecauseLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentCheckList: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentDetails: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentCourtConsider: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentTimeShortened: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentMustBeServedBy: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentByWayOf: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingNotNeeded: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraHearingDisputeLabel: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraStartDateTime: OK -2026-02-06T16:25:44.908 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraCourtDynamicList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraBeforeAList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraByWayOf: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParticipationDirections: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementDeadlineDate: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementWritten: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamAttendingPerson: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingOn: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingTimeEstimate: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingBeforeAList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraDecideBy: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraStartDateAndTime: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraHearing: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraCourtDynamicList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsDraHearingByWayOf: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceDateTime: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceTimeEstimate: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceCourtDynamicList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementConferenceByWayOf: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoJoiningInstructionsForRH: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingAllegationsMadeBy: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingCourtHasRequested: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllegationsDeadlineDate: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWrittenResponseDeadlineDate: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingReportsSentTo: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingReportsAlsoSentTo: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingMaximumPages: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingHowManyWitnessEvidence: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPersonNeedsInterpreter: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterDialectRequired: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUpdateContactDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepJudgeName: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateOrReserveJudge: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateOrReserveJudgeName: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNamedJudgeFullName: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationDistJudgeLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationCircuitJudgeLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocationMagistratesLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoReservedToLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocatedToLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementOtherCheckDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementOtherCheckDetailsLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPositionStatementOtherDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamOtherDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamOtherCheckDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoMiamOtherDetailsLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingDirections: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingOtherCheck: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingOtherCheckLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingOtherDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterOtherDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterOtherDetailsCheck: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoInterpreterOtherDetailsLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServeDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServeCheck: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoCafcassFileAndServeDetailsLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingCafcassCymruDetails: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingCafcassCymruCheck: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeguardingCafcassCymruDetailsLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingUrgentAnotherReason: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterGatekeeping: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateOrReserveJudgeLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoNextStepsAfterGatekeepingLabel: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAllocateDecisionJudgeFullName: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoHearingCourtRequests: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoMadeAllegationsText: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoNeedsToRespondAllegationsText: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoMadeAllegationsList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoNeedsToRespondAllegationsList: OK -2026-02-06T16:25:44.909 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForFactFindingHearingDetails: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDirectionsForFactFindingHearingLabel2: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoNeedsToRespondAllegationsListText: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoWhoMadeAllegationsListText: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityLetterLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityName: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityTextArea: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityReportSubmitByDate: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityDetails: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityCheck: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoLocalAuthorityDetailsLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoOtherLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisclosureOfPapersLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDisclosureOfPapersCaseNumbers: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParentWithCareLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoParentWithCare: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAdditionalDetailsLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSdoLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSdoListLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPreamblesLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoRightToAskCourtLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartiesRaisedAbuseLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoRightToAskCourt: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPartiesRaisedAbuseCollection: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAfterSecondGatekeepingLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAfterSecondGatekeeping: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAddNewPreambleLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoAddNewPreambleCollection: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingFlag: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFactFindingHintText: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAdminNotes: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouWantToServeOrder: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassOrCymruNeedToProvideReport: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassCymruDocuments: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whenReportsMustBeFiled: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderEndsInvolvementOfCafcassOrCymru: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatDoWithOrder: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrdersDynamicList: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewDraftOrderLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewDraftOrder: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewUploadedOrder: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewDraftOrderWelsh: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doYouWantToEditTheOrder: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatToDoWithOrderSolicitor: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatToDoWithOrderCourtAdmin: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionsToLegalRepresentative: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalRepInstructionsPlaceHolder: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionsToLegalRepresentativeLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field yourInstructionsToLrLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeDirectionsToAdmin: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderCompleteToServe: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionsFromJudge: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderUploadedAsDraftFlag: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderOptionType: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field downloadOrderLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkTheOrderLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field openOrderAndReviewContentLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field makeChangesToUploadedOrder: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadOrAmendDirectionsFromJudge: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadAmendedOrderLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editedUploadOrderDoc: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendedOrderLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field blankOrderLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404OccupationLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404nonMolestationLabel: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNotesEmptyUploadJourney: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeNotesEmptyDraftJourney: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field rejectedOrdersDynamicList: OK -2026-02-06T16:25:44.910 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editOrderTextInstructions: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editOrderTextInstructionsLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalWelshDocument: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFl401CaseCreatedForWithOutNotice: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDocumentHintLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDocumentHintLabel1: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401OnNoticeLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401WithOutNoticeReasonToRespondent: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401WithOutNoticeReasonToRespondentLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withOutNoticeReasonToShareApplicantLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDirections: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reducedNoticePeriodDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkedCaCasesList: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkedCaCasesFurtherDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantNeedsFurtherInfoDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNeedsFileStatementDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDirectionsToAdmin: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401LonOrderCompleteToServe: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeHearingDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeDocument: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401RejectListWithoutNoticeHearingRequestLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ReasonsForListWithoutNoticeRequested: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ListOnNoticeHearingInstructionLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401listOnNoticeHearingInstruction: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401StmtOfTruthResubmit: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401ConfidentialityCheckResubmit: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentsDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentWitnessDuplicate: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadedDocuments: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentWitness: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentWitnessLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadWitnessDocuments: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadDocumentSupport: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl401UploadSupportDocuments: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNameHmctsInternal: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field SearchCriteria: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseManagementCategory: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseManagementLocation: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentHearingId: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentHearingStatus: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingListed: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfAppList: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field beforeYouStart: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field updatePayBubble: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field approveDeliveryManagerOrSeniorManager: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field Checkthehelpwithfeesapplication: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hwfApplicationDynamicData: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationHelpwithfeesreferenceApplicantApplication: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field outstandingBalance: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field managerAgreedApplicationBeforePayment: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addHwfCaseNoteShort: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheCaseInDraftState: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudge: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedReasonsForListOnNotice: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedAndAdditionalReasons: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listWithoutNoticeHearingDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listWithoutNoticeHearingInstructionLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listWithoutNoticeHearingInstruction: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtList: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtCodeFromFact: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field documentCategoryChecklist: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherEvidenceLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherEvidences: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mainApplicationDocument: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field giveDetails: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondenceLabel: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondence: OK -2026-02-06T16:25:44.911 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocumentsLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocuments: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mainAppDocForTabDisplay: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mainAppNotConf: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field correspondenceForTabDisplay: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field corrNotConf: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocumentsForTabDisplay: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherDocNotConf: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocuments: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsWarningText: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsWarningText2: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsTriggeredBy: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageDocumentsRestrictedFlag: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isC8DocumentPresent: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfC21Order: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field typeOfC21OrderLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderC21HearingLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder13: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21Order: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21OrderLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21OrderLabel1: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedC21OrderLabel2: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderC21SolicitorLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c21OrderOptions: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addOrderDetailsLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childArrangementsOrdersToIssue: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectChildArrangementsOrder: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder3: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel11: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentalResponsibility: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field parentName: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder7: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caffcassOfficeName: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caffcassCymruOfficeName: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassOfficeDetails: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel12: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersOptions: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createAnOrderLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createSelectOrderOptions: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withdrawnOrRefusedOrder: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectTypeOfOrder: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field doesOrderClosesCase: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closeCaseDoableActions: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderByConsent: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCaseWithdrawn: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field wasTheOrderApprovedAtHearing: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingType: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingsType: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeOrMagistrateTitle: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderMadeByLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeOrMagistratesLastName: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field justiceLegalAdviserFullName: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderMade: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recitalsOrPreamble: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderDirections: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherDirectionsIfRequired: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field transferCase: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsForTransfer: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseTransferOptions: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkYourOrder: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkYourOrderLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewOrderDoc: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field previewOrderDocWelsh: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkOrderRestrictionsLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderRecipientsLabel: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderRecipients: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherOrderRecipients: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassRecipient: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherRecipient: OK -2026-02-06T16:25:44.912 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassEmailAddress: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherEmailAddress: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenList: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childListForSpecialGuardianship: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderHearingLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderSummaryLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderSolicitorLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder5: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeader1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel2: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel3: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel4: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel5: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel7: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel6: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel8: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel9: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel10: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel13: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel14: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel19: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderHeaderLabel1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderCheckOrderLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderCollection: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtName1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAddress: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseNumber: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantName1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantReference: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentReference: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderRespondentName: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field magistrateLastName: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder10: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field guardianTextBox: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel12: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childDetailsManageOrderLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDateOfBirth: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAddress: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addressTheOrderAppliesTo: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404bCustomFields: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtDeclares2: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field homeRights: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicantInstructions: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appointedGuardianLabel: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field theRespondent2: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDay1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDay2: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentStartTime: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEndTime: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest2: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whenTheyLeave: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest3: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field moreDetails: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest4: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest6: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field instructionRelating: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field powerOfArrest5: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderMade1: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderEnds: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field datePlaceHearing: OK -2026-02-06T16:25:44.913 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOrderEndsTime: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field datePlaceHearingTime: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingTimeEstimate: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtName2: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childOption: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ukPostcode2: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationCost: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNotice: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field appointedGuardianName: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404CustomFields: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderType: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateUploadOrderMade: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderAboutChildren: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderAboutAllChildren: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daOrderForCaCase: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel20: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whenToServeOrderLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersNeedToBeServed: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field loggedInUserType: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentOrderCreatedDateTime: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field furtherInformationIfRequired: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl404SchoolDirections&Details: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenListForDocmosis: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioCaseReviewHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioPermissionHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentFirstHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioUrgentHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioWithoutNoticeHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dioFhdraHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoUrgentHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoFhdraHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoPermissionHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoDraHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sdoSettlementHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hasJudgeProvidedHearingDetails: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderName: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameEditScreenLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel7: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel8: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel9: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel10: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel11: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameLabel13: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameSolicitorLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameSummaryLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameHearingLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameDirectionsToAdminLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameInstructionsFromJudgeLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedHearingType: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isHearingPageNeeded: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markedToServeEmailNotification: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field performingUser: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field performingAction: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeLaReviewRequired: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForWA: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSdoSelected: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadHintLabel: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForSolicitorCreatedOrder: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForJudgeApproved: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForAdminCreatedOrder: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderNameForJudgeCreatedOrder: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isHearingTaskNeeded: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hearingOptionSelected: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderApproved: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whoApprovedTheOrder: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isMultipleHearingSelected: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeLaManagerReviewRequired: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field listElementsSetToDefaultValue: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field editedOrderHasDefaultCaseFields: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field requestSafeGuardingLetterUpdate: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field safeGuardingLetterUploadDueDate: OK -2026-02-06T16:25:44.914 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkForAutomatedHearing: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalisationDetails: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402CourtName: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402CourtAddress: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402CaseNo: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402Applicant: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersFl402ApplicantRef: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDateOfhearing: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfHearingTime: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfHearingTimeEstimate: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl402HearingCourtname: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fl402HearingCourtAddress: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder4: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field creatingHearingRequiredLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createOneHearingLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field creatingHearingOptionalLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createMultipleHearingLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ordersHearingDetails: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorOrdersHearingDetails: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderCreatedBySolicitor: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrderLabel19: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createHearingRequiredLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field createHearingOptionalLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorCreateHearingRequiredLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solicitorCreateHearingOptionalLabel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isCafcassCymru: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401ApplicantPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401ApplicantSolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401RespondentPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isFL401RespondentSolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant1Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant2Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant3Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant4Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant5Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant1SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant2SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant3SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant4SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicant5SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent1Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent2Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent3Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent4Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent5Present: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent1SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent2SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent3SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent4SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isRespondent5SolicitorPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isAutomatedHearingPresent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersCourtName: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersCourtAddress: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersCaseNo: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersApplicant: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersApplicantReference: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondent: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondentReference: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondentDob: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersRespondentAddress: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingRepr: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingSolicitorCounsel: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingPerson: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingAddress: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersUnderTakingTerms: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDateOfUnderTaking: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingDateExpiry: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingExpiryDateTime: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingExpiryTime: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field underTakingFormSign: OK -2026-02-06T16:25:44.915 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel15: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedOrder2: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderDynamicList: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderDownloadOrderLabel: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDocumentToAmendLabel: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersDocumentToAmend: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderReplaceOrderLabel: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersAmendedOrderLabel: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrdersAmendedOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderSelectCheckOptions: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field amendOrderSelectJudgeOrLa: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfJudgeAmendOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfLaAmendOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfJudgeToReviewOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfLaToReviewOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field managerCheckAmendOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeDirectionsToAdminAmendOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOrderCompleteToServeAmendOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel21: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrderDynamicList: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrderAdditionalDocumentsLabel: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrderAdditionalDocuments: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveToRespondentOptions: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel22: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingRespondentsOptionsCA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingOptionsForNonLegalRep: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAdminText: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtBailiffText: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recipientsOptions: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherParties: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassServedOptions: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassCymruServedOptions: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassCymruEmail: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassEmailId: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOtherPartiesCA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOrgDetailsList: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deliveryByOptionsCA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailInformationCA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field postalInformationCA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOtherPartiesDA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailInformationDA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field postalInformationDA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deliveryByOptionsDA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingRespondentsOptionsDA: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field personallyServeRespondentsOptions: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field displayLegalRepOption: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel23: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOnlyC47aOrderSelectedToServe: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPeoplePresentInCaseFlag: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field manageOrderHeaderLabel24: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveToRespondentOptionsOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servingRespondentsOptionsCaOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field recipientsOptionsOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherPartiesOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveOtherPartiesCaOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field deliveryByOptionsCaOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field emailInformationCaOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field postalInformationCaOnlyC47a: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalOrderDocuments: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadAnOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childArrangementOrders: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseOrders: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fcOrders: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherOrdersOption: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nameOfOrder: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isTheOrderUploadedByConsent: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field approvalDate: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field uploadOrderDoc: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messagesLabel: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendOrReplyEventLink: OK -2026-02-06T16:25:44.916 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field openMessageLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closedMessageLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuChildInvolvedInMiam: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuApplicantAttendedMiam: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuClaimingExemptionMiam: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamPolicyUpgradeExemptionsLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuExemptionReasons: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel1: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuDomesticAbuseEvidences: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuIsDomesticAbuseEvidenceProvided: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuAddEvidenceLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuDomesticAbuseEvidenceDocument: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuNoDomesticAbuseEvidenceReason: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submissionRequiredFieldsInfo9: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel5: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuChildProtectionConcernReason: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel2: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuUrgencyReason: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel3: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuPreviousMiamAttendanceReason: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuDocFromDisputeResolutionProvider: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuTypeOfPreviousMiamAttendanceEvidence: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuCertificateByMediator: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuMediatorDetails: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field miamExemptionLabel4: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuOtherExemptionReasons: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuApplicantUnableToAttendMiamReason1: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field mpuApplicantUnableToAttendMiamReason2: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field nextHearingDetails: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field changeOrganisationRequestField: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicant: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondent: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant1Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant2Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant3Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant4Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caApplicant5Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent1Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent2Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent3Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent4Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caRespondent5Policy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daApplicantPolicy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field daRespondentPolicy: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fm5ReminderNotifications: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field fm5RemindersSent: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenNotPartInTheCaseYesNo: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field childrenNotInTheCase: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabApplicantsLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabChildrenLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabRespondentsLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherPartiesLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherChildAndRespondentPartiesLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherPartiesRevisedLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherChildNotInThePartiesLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabChildAndApplicantPartiesLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabChildAndRespondentPartiesLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field partiesTabOtherChildAndOtherPeoplePartiesLabel: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isPathfinderCase: OK -2026-02-06T16:25:44.917 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field PaymentHistory: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalProfQuarantineDocsList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenUploadQuarantineDocsList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenQuarantineDocsList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassQuarantineDocsList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtStaffQuarantineDocsList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tempQuarantineDocumentList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavQuarantineDocumentList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field refugeDocuments: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field historicalRefugeDocuments: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removableDocuments: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field documentsToBeRemoved: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeDraftOrdersDynamicList: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeOrderNameLabel: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field checkTheRemoveOrderLabel: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field removeDraftOrderText: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentStatusLabel: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherStatusMsg: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field changeStatusOptions: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reopenStateTo: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field abilityToParticipateInProceedings: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohYesOrNo: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohDomesticAbuseYesNo: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohChildAbductionYesNo: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohChildAbuseYesNo: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohHint: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohLabel: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohSubstanceAbuseYesNo: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohSubstanceAbuseDetails: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOtherConcerns: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOtherConcernsDetails: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOrdersLabel: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOrdersLabelDetail: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestation: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationDateIssued: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationEndDate: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationCurrent: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationCourtName: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationCaseNumber: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersNonMolestationDocument: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupation: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationDateIssued: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationEndDate: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationCurrent: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationCourtName: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationCaseNumber: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOccupationDocument: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtection: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionDateIssued: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionEndDate: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionCurrent: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionCourtName: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionCaseNumber: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersForcedMarriageProtectionDocument: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestraining: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingDateIssued: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingEndDate: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingCurrent: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingCourtName: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingCaseNumber: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersRestrainingDocument: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctive: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveDateIssued: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveEndDate: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveCurrent: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveCourtName: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveCaseNumber: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersOtherInjunctiveDocument: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlace: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceDateIssued: OK -2026-02-06T16:25:44.918 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceEndDate: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceCurrent: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceCourtName: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceCaseNumber: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOrdersUndertakingInPlaceDocument: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDomesticAbuseBehavioursLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbuseBehavioursLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbductionLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respOthersConcernsLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbuseBehavioursSubLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDomesticAbuseBehavioursSubLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respDomesticBehaviours: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbuses: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildAbductionReasons: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respPreviousAbductionThreats: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respPreviousAbductionThreatsDetails: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildrenLocationNow: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionPassportOfficeNotified: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionPreviousPoliceInvolvement: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionPreviousPoliceInvolvementDetails: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAbductionChildHasPassport: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAohOtherConcernsCourtActions: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllegationsOfHarmChildContactLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAgreeChildUnsupervisedTime: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAgreeChildSupervisedTime: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAgreeChildOtherContact: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPhysicalAbuseLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPhysicalAbuseSubLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPhysicalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPsychologicalAbuseLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPsychologicalAbuseSubLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPsychologicalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildSexualAbuseLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildSexualAbuseSubLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildSexualAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildEmotionalAbuseLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildEmotionalAbuseSubLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildEmotionalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildFinancialAbuseLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildFinancialAbuseSubLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildFinancialAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskPhysicalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskPsychologicalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskSexualAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskEmotionalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respWhichChildrenAreRiskFinancialAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskPhysicalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskPsychologicalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskSexualAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskEmotionalAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAllChildrenAreRiskFinancialAbuse: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respChildPassportDetails: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAohYesNo: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAllegationsOfHarm: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDomesticAbuseLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDomesticAbuseDescLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDomesticAbuseBehaviour: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbuseLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbuseDescLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbuseBehaviour: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbductionLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentChildAbduction: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentOtherConcernsLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentOtherConcerns: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAttendingTheCourt: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respAttendingTheCourtDaActLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field domesticAbuseProvisionLabel: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDocsList: OK -2026-02-06T16:25:44.919 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentADocumentsList: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBDocumentsList: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentCDocumentsList: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDDocumentsList: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEDocumentsList: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAc8: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBc8: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentCc8: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDc8: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEc8: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAc8Documents: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentBc8Documents: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentCc8Documents: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentDc8Documents: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentEc8Documents: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field resSolConfirmEditContactDetails: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentConsentToApplication: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internationalElementChild: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepContactDetailsPrivate: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepDetailsPrivateSummaryHeading: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialListDetails: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepDetailsPrivateSummary: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtActionHeading: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtAction: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field keepDetailsPrivateNoHeading: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noNeedOfPrivateDetailsLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolicitorHaveYouAttendedMiam: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatIsMiamPlaceHolder: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field whatIsMiamLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpMiamCostsExemptionsPlaceHolder: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field helpMiamCostsExemptionsLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field hasRespondentAttendedMiam: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentWillingToAttendMiam: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentReasonNotAttendingMiam: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field currentOrPastProceedingsForChildren: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentExistingProceedings: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmYesOrNoResponse: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmDocument: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmWelshDocument: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentResponseToAllegationOfHarm: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responseToAllegationsOfHarmLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponse: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel1: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel2: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel3: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel4: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel5: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel6: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel7: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel8: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel9: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentNameForResponseLabel10: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field resSolConfidentialityDisclaimerSubmit: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field c100ResSolSubmitAndPayAgreeSignStmtLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentAgreeStatement: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolSuccessLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolResponseStateLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolResponseCourtLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolResponseDownloadLabel: OK -2026-02-06T16:25:44.920 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC7ResponseDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC7WelshResponseDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC1AResponseDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC1AResponseDocWelsh: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentSolicitorName: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskList: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListA: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelA: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListB: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelB: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListC: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelC: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListD: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelD: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListE: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondentTaskListLabelE: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field viewPdfResponseLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkToDownloadC7Response: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field linkToDownloadC7ResponseLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC7ResponseDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC7WelshResponseDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC1ADoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC1ADocWelsh: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftC8ResponseDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalC8ResponseDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPrivateDisclaimer: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPrivateReasonLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPrivateReason: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToPrivateTabLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToPrivateTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPublicDisclaimer: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPublicReasonLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsPublicReason: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsRestrictedDisclaimer: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsRestrictedReasonLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field markAsRestrictedReason: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseSecurityClassification: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToRestrictTabLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reasonsToRestrictTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field assignedUserDetailsText: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field assignedUserDetailsLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field returnToPreviousStateLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectedAdditionalApplicationsBundle: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isAdditionalApplicationReviewed: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel1: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel2: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsDynamicList: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel3: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDocsLabel4: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDecisionYesOrNo: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field docToBeReviewed: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field docToBeReviewedLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field docLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field showLabel: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field reviewDoc: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalProfUploadDocListConfTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalProfUploadDocListDocTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassUploadDocListConfTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field cafcassUploadDocListDocTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtStaffUploadDocListConfTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtStaffUploadDocListDocTab: OK -2026-02-06T16:25:44.921 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScannedDocListDocTab: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field bulkScannedDocListConfTab: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field restrictedDocuments: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialDocuments: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field citizenUploadedDocListDocTab: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field courtNavUploadedDocListDocTab: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field chooseSendOrReply: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageObject: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageContent: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field openMessages: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field closedMessages: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field externalMessageAttachDocsList: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field replyMessageDynamicList: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReply: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeForSendAndReply: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendingMessagesLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field externalMessagesHint: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendingMessagesHint: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messages: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyDynamicList: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field respondToMessage: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyTable: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyTableLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field messageReplyTableLabel2: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field replyMessageObject: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendMessageObject: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field internalMessageAttachDocsList: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field letGateKeepersKnowLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sendToGateKeeperHint: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isSpecificGateKeeperNeeded: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isJudgeOrLegalAdviserGatekeeping: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field judgeName: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field legalAdvisorList: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field gatekeepingDetails: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field selectOrdersLabel1: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfApplicationScreen1: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sentDocumentPlaceHolder: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sentDocumentsLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serveTheseOrdersLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field automaticDocumentsLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pd36qLetterLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pd36qLetter: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field noticeOfSafetySupportLetter: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangementsLetterLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangementsLetter: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDocumentsLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDocuments: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalDocumentsList: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfApplicationHeader: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field headerLabel: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field finalServedApplicationDetailsList: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaHeaderLabel22: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServeToRespondentOptions: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServingRespondentsOptionsCA: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServingRespondentsOptions: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaRecipientsOptions: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherParties: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassServedOptions: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassCymruServedOptions: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassCymruEmail: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassEmailId: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherPeoplePresentInCaseFlag: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServingRespondentsOptionsDA: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaIsOrderListEmpty: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCitizenServingRespondentsOptionsCA: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCitizenServingRespondentsOptions: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCitizenServingRespondentsOptionsDA: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isConfidential: OK -2026-02-06T16:25:44.922 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field proceedToServing: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialDetailsArePresentBanner: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServeLocalAuthorityYesOrNo: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaServeC8ToLocalAuthorityYesOrNo: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field addDocumentsForLaLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaDocumentDynamicListForLa: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaLaEmailAddress: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningText: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningTextCA: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningTextLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field missingAddressWarningTextDA: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isC8CheckNeeded: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field responsibleForService: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isOccupationOrderSelected: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isApplicantRepresented: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field productHearingBundleOn: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confirmRecipients: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCheckRestrictionsLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaConfirmRecipientsLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOrderSentToSolicitorLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaApplicantsList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaRespondentsList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherPeopleList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassEmailOptionChecked: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherEmailOptionChecked: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaCafcassEmailAddressList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field soaOtherEmailAddressList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfApplicationLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedPackLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servedPackLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialCheckFailedLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodSelectDocumentsLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodDocumentsList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalDocumentsLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalDocumentsList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalRecipients: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodAdditionalRecipientsList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodDocumentsCheckOptions: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodSolicitorServingRespondentsOptions: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodCitizenServingRespondentsOptions: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodUnServedPack: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servedDocumentsDetailsList: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field sodServeToRespondentOptions: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfDocumentsConfCheckWarningText: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field canDocumentsBeServed: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field serviceOfDocumentsLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field unServedDocumentsLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field servedDocumentsLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field ServiceRequest: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepWarningText: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepHeader: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepChooseParties: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field solStopRepDisclaimer: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceAddRecipientLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceAddRecipient: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceForApplication: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceForOrder: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field stmtOfServiceWhatWasServed: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityDisclaimerSubmit: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field submitAndPayDownloadApplicationWelshLink: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field summaryLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field pathfinderLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allocatedJudgeDetails: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field refugeLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field refugeCase: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseStatusLabel: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseStatus: OK -2026-02-06T16:25:44.923 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialityDetailsLabel: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field confidentialDetails: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field urgencyLabel: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field urgencyDetails: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTypeLabel: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field applicationTypeDetails: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmLabel: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarm: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field allegationOfHarmRevised: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangmentLabel: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field specialArrangement: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field orderAppliedForLabel: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field summaryTabForOrderAppliedFor: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsLabelForSummaryTab: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingsForSummaryTab: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfSubmissionLabel: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field dateOfSubmission: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field otherProceedingEmptyTable: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field caseClosedDate: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tsPaymentServiceRequestReferenceNumber: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field tsPaymentStatus: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awpWaTaskName: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awpWaTaskToBeCreated: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field awpHwfRefNo: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field additionalApplicationsBundleId: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field draftOrderDocWelsh: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field withDrawApplicationData: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: Parsing case field isWithdrawRequestSent: OK -2026-02-06T16:25:44.924 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseFieldParser Parsing case fields for case type PRLAPPS: OK: 2257 case fields parsed -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state AWAITING_SUBMISSION_TO_HMCTS: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state SUBMITTED_PAID: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state SUBMITTED_NOT_PAID: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state CASE_ISSUED: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state AWAITING_RESUBMISSION_TO_HMCTS: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state CASE_WITHDRAWN: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state JUDICIAL_REVIEW: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state DELETED: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state ALL_FINAL_ORDERS_ISSUED: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state PREPARE_FOR_HEARING_CONDUCT_HEARING: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state DECISION_OUTCOME: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state REQUESTED_FOR_DELETION: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state READY_FOR_DELETION: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state PROCEEDS_IN_HERITAGE_SYSTEM: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: Parsing state AWAITING_INFORMATION: OK -2026-02-06T16:25:44.925 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.StateParser Parsing states for case type PRLAPPS: OK: 15 case states parsed -2026-02-06T16:25:47.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.MetadataCaseFieldParser Parsing metadata fields for case type PRLAPPS: OK: 1 metadata fields parsed -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminRemoveLegalRepresentativeC100: OK -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminRemoveLegalRepresentativeFL401: OK -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminAddBarrister: OK -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorAddBarrister: OK -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorRemoveBarrister: OK -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event barristerStopRepresenting: OK -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminRemoveBarrister: OK -2026-02-06T16:25:47.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenContactPreference: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event legalRepresentation: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event consentToTheApplication: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenRespondentAoH: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenInternalFlagUpdates: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCurrentOrPreviousProceeding: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenResponseToAoH: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityA: OK -2026-02-06T16:25:47.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityB: OK -2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityC: OK -2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityD: OK -2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolLitigationCapacityE: OK -2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmA: OK -2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmB: OK -2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmC: OK -2026-02-06T16:25:47.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmD: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAllegationsOfHarmE: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtA: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtB: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtC: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtD: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolAttendingTheCourtE: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsA: OK -2026-02-06T16:25:47.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsB: OK -2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsC: OK -2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsD: OK -2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConfirmOrEditContactDetailsE: OK -2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationA: OK -2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationB: OK -2026-02-06T16:25:47.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationC: OK -2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationD: OK -2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolConsentingToApplicationE: OK -2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementA: OK -2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementB: OK -2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementC: OK -2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementD: OK -2026-02-06T16:25:47.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolInternationalElementE: OK -2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateA: OK -2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateB: OK -2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateC: OK -2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateD: OK -2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolKeepDetailsPrivateE: OK -2026-02-06T16:25:47.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamA: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamB: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamC: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamD: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolMiamE: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsA: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsB: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsC: OK -2026-02-06T16:25:47.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsD: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolCurrentOrPreviousProceedingsE: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmA: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmB: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmC: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmD: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolResponseToAllegationsOfHarmE: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitA: OK -2026-02-06T16:25:47.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitB: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitC: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitD: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolSubmitE: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentA: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentB: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentC: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentD: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ResSolViewResponseDraftDocumentE: OK -2026-02-06T16:25:47.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createFlagsForGivenCaseNote: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenLanguageSupportNotes: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ManageSupport: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100RequestSupport: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ManageSupport: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401RequestSupport: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100CreateFlags: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createWaTaskForCtscCaseFlags: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ManageFlags: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100ReviewRARequest: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event closeReviewRARequestTask: OK -2026-02-06T16:25:47.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401CreateFlags: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ManageFlags: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ReviewRARequest: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorCreate: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event attendingTheHearing: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendAttendingTheHearing: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event selectApplicationType: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendSelectApplicationType: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hearingUrgency: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildrenAndApplicants: OK -2026-02-06T16:25:47.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendHearingUrgency: OK -2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event withoutNoticeOrderDetails: OK -2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event applicantsDetails: OK -2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendApplicantsDetails: OK -2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childDetails: OK -2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childDetailsRevised: OK -2026-02-06T16:25:47.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildDetails: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildDetailsRevised: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentsDetails: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendRespondentsDetails: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ApplicantFamilyDetails: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event miam: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendMiam: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allegationsOfHarm: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allegationsOfHarmRevised: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendAllegationsOfHarmRevised: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendAllegationsOfHarm: OK -2026-02-06T16:25:47.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherPeopleInTheCase: OK -2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherChildNotInTheCase: OK -2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherPeopleInTheCase: OK -2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherPeopleInTheCaseRevised: OK -2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherPeopleInTheCaseRevised: OK -2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherChildNotInTheCase: OK -2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internationalElement: OK -2026-02-06T16:25:47.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenInternationalElement: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendInternationalElement: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event otherProceedings: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendOtherProceedings: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401OtherProceedings: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event litigationCapacity: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendLitigationCapacity: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event welshLanguageRequirements: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendWelshLanguageRequirements: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event viewPdfDocument: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-task-list: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageDocuments: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageDocumentsNew: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event submitAndPay: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event safeguardingAndRiskOfHarm: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event addCaseNote: OK -2026-02-06T16:25:47.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event awaitingInformation: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event paymentSuccessCallback: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event issueAndSendToLocalCourtCallback: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event paymentFailureCallback: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentRelationship: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event attachScannedDocs: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event handleEvidence: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event uploadDocuments: OK -2026-02-06T16:25:47.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event caseNumber: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AddCaseNumber: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event returnApplication: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentBehaviour: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401TypeOfApplication: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-application-tab: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401Home: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-confidential-tab: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event internal-update-all-tabs: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event WithdrawApplication_Event: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event sendToGateKeeper: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401SendToGateKeeper: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event resendRpa: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event sendOrReplyToMessages: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401StatementOfTruthAndSubmit: OK -2026-02-06T16:25:47.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401UploadDocuments: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageOrders: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event waManageOrders: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event deleteApplication: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event submit: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401resubmit: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event keepYourDetailsPrivate: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event confirmYourDetails: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hearingNeeds: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondentMiam: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event courtnav-case-creation: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event courtnav-document-upload: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenUploadedDocument: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reviewAndSubmit: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event linkCitizenAccount: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizen-internal-case-update: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event respondent-responded-to-case: OK -2026-02-06T16:25:47.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createBundle: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event returnToPreviousState: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizen-case-update: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCreate: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizen-case-submit: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenAwpCreate: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenAwpHwfCreate: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenSaveC100DraftInternal: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event nocRequest: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event applyNocDecision: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event updateRepresentation: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event createCaseLink: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event maintainCaseLink: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event asyncStitchingComplete: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hmcCaseUpdDecOutcome: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hmcCaseUpdPrepForHearing: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event addCafcassOfficer: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCaseSubmitWithHWF: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allocatedJudge: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event listWithoutNotice: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100listWithoutNotice: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenCaseWithdraw: OK -2026-02-06T16:25:47.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event listOnNotice: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event cafcass-document-upload: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event UpdateNextHearingInfo: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reviewDocuments: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401ListOnNotice: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendTypeOfApplication: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendWithoutNoticeOrderDetails: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendApplicantFamilyDetails: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendRespondentRelationship: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendRespondentBehaviour: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendOtherProceedings: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401AmendHome: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenRemoveLegalRepresentative: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event c100-all-docs-reviewed: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fl401-all-docs-reviewed: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event statementOfService: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childrenAndApplicants: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childrenAndRespondents: OK -2026-02-06T16:25:47.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildrenAndRespondents: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event childrenAndOtherPeople: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendChildrenAndOtherPeople: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event miamPolicyUpgrade: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendMiamPolicyUpgrade: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hwfProcessCaseUpdate: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event removeDraftOrder: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event manageCafcassAccess: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event enableUpdateHearingActualTask: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event enableRequestSolicitorOrderTask: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hmcHearingCompleted: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event removeDocuments: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reviewAdditionalApplication: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event citizenStatementOfService: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event recordFinalDecision: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event editReturnedOrder: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fm5NotificationCaseUpdate: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event fm5NotificationNotRequiredCaseUpdate: OK -2026-02-06T16:25:47.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event processUrgentHelpWithFees: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event migrateCase: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event draftAnOrder: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event editAndApproveAnOrder: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminEditAndApproveAnOrder: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event hearingEditAndApproveAnOrder: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event pathfinderDecision: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event pcqUpdateForCitizen: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event reopenClosedCases: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event publicCaseAccess: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event privateCaseAccess: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event restrictedCaseAccess: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event changeCaseAccess: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event serviceOfApplication: OK -2026-02-06T16:25:47.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event confidentialityCheck: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event serviceOfDocuments: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event serviceOfDocumentsConfCheck: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event solicitorStopRepresentingLiP: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummySolicitorCreate: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummySolicitorCreateCourtNav: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummyAdminCreateNoc: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportPaymentSuccessCallback: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event tsDummyPaymentAwP: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportRespondentTaskListA: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportRespondentTaskListB: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportRespondentTaskListC: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportCAUrgentCases: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event testingSupportDummyCase: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event amendCourtDetails: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event transferToAnotherCourt: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event uploadAdditionalApplications: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event awpPaymentSuccessCallback: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event awpPaymentFailureCallback: OK -2026-02-06T16:25:47.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event allAwPInReview: OK -2026-02-06T16:25:47.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event processHwfUpdateAwpStatus: OK -2026-02-06T16:25:47.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: Parsing event adminCreate: OK -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminRemoveLegalRepresentativeC100: OK: 3 case fields parsed -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminRemoveLegalRepresentativeFL401: OK: 3 case fields parsed -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminAddBarrister: OK: 1 case fields parsed -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorAddBarrister: OK: 1 case fields parsed -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorRemoveBarrister: OK: 1 case fields parsed -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event barristerStopRepresenting: OK: 1 case fields parsed -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminRemoveBarrister: OK: 1 case fields parsed -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenContactPreference: No event case fields found -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event legalRepresentation: No event case fields found -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event consentToTheApplication: No event case fields found -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenRespondentAoH: No event case fields found -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenInternalFlagUpdates: No event case fields found -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCurrentOrPreviousProceeding: No event case fields found -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenResponseToAoH: No event case fields found -2026-02-06T16:25:47.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityA: OK: 4 case fields parsed -2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityB: OK: 4 case fields parsed -2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityC: OK: 4 case fields parsed -2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityD: OK: 4 case fields parsed -2026-02-06T16:25:47.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolLitigationCapacityE: OK: 4 case fields parsed -2026-02-06T16:25:47.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmA: OK: 114 case fields parsed -2026-02-06T16:25:47.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmB: OK: 114 case fields parsed -2026-02-06T16:25:47.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmC: OK: 114 case fields parsed -2026-02-06T16:25:47.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmD: OK: 114 case fields parsed -2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAllegationsOfHarmE: OK: 114 case fields parsed -2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtA: OK: 6 case fields parsed -2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtB: OK: 6 case fields parsed -2026-02-06T16:25:47.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtC: OK: 6 case fields parsed -2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtD: OK: 6 case fields parsed -2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolAttendingTheCourtE: OK: 6 case fields parsed -2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsA: OK: 4 case fields parsed -2026-02-06T16:25:47.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsB: OK: 4 case fields parsed -2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsC: OK: 4 case fields parsed -2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsD: OK: 4 case fields parsed -2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConfirmOrEditContactDetailsE: OK: 4 case fields parsed -2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationA: OK: 4 case fields parsed -2026-02-06T16:25:47.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationB: OK: 4 case fields parsed -2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationC: OK: 4 case fields parsed -2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationD: OK: 4 case fields parsed -2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolConsentingToApplicationE: OK: 4 case fields parsed -2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementA: OK: 4 case fields parsed -2026-02-06T16:25:47.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementB: OK: 4 case fields parsed -2026-02-06T16:25:47.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementC: OK: 4 case fields parsed -2026-02-06T16:25:47.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementD: OK: 4 case fields parsed -2026-02-06T16:25:47.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolInternationalElementE: OK: 4 case fields parsed -2026-02-06T16:25:47.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateA: OK: 13 case fields parsed -2026-02-06T16:25:47.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateB: OK: 13 case fields parsed -2026-02-06T16:25:47.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateC: OK: 13 case fields parsed -2026-02-06T16:25:47.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateD: OK: 13 case fields parsed -2026-02-06T16:25:47.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolKeepDetailsPrivateE: OK: 13 case fields parsed -2026-02-06T16:25:47.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamA: OK: 13 case fields parsed -2026-02-06T16:25:47.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamB: OK: 13 case fields parsed -2026-02-06T16:25:47.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamC: OK: 13 case fields parsed -2026-02-06T16:25:47.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamD: OK: 13 case fields parsed -2026-02-06T16:25:47.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolMiamE: OK: 13 case fields parsed -2026-02-06T16:25:47.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsA: OK: 6 case fields parsed -2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsB: OK: 6 case fields parsed -2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsC: OK: 6 case fields parsed -2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsD: OK: 6 case fields parsed -2026-02-06T16:25:47.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolCurrentOrPreviousProceedingsE: OK: 6 case fields parsed -2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmA: OK: 5 case fields parsed -2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmB: OK: 5 case fields parsed -2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmC: OK: 5 case fields parsed -2026-02-06T16:25:47.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmD: OK: 5 case fields parsed -2026-02-06T16:25:47.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolResponseToAllegationsOfHarmE: OK: 5 case fields parsed -2026-02-06T16:25:47.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitA: OK: 12 case fields parsed -2026-02-06T16:25:47.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitB: OK: 12 case fields parsed -2026-02-06T16:25:47.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitC: OK: 12 case fields parsed -2026-02-06T16:25:47.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitD: OK: 12 case fields parsed -2026-02-06T16:25:47.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolSubmitE: OK: 12 case fields parsed -2026-02-06T16:25:47.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentA: OK: 9 case fields parsed -2026-02-06T16:25:47.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentB: OK: 9 case fields parsed -2026-02-06T16:25:47.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentC: OK: 9 case fields parsed -2026-02-06T16:25:47.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentD: OK: 9 case fields parsed -2026-02-06T16:25:47.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ResSolViewResponseDraftDocumentE: OK: 9 case fields parsed -2026-02-06T16:25:47.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createFlagsForGivenCaseNote: OK: 86 case fields parsed -2026-02-06T16:25:47.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenLanguageSupportNotes: OK: 1 case fields parsed -2026-02-06T16:25:47.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ManageSupport: OK: 36 case fields parsed -2026-02-06T16:25:47.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100RequestSupport: OK: 37 case fields parsed -2026-02-06T16:25:47.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ManageSupport: OK: 7 case fields parsed -2026-02-06T16:25:47.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401RequestSupport: OK: 8 case fields parsed -2026-02-06T16:25:47.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100CreateFlags: OK: 73 case fields parsed -2026-02-06T16:25:47.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createWaTaskForCtscCaseFlags: OK: 1 case fields parsed -2026-02-06T16:25:47.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ManageFlags: OK: 72 case fields parsed -2026-02-06T16:25:47.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100ReviewRARequest: OK: 2 case fields parsed -2026-02-06T16:25:47.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event closeReviewRARequestTask: No event case fields found -2026-02-06T16:25:47.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401CreateFlags: OK: 15 case fields parsed -2026-02-06T16:25:47.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ManageFlags: OK: 14 case fields parsed -2026-02-06T16:25:47.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ReviewRARequest: OK: 2 case fields parsed -2026-02-06T16:25:47.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorCreate: OK: 12 case fields parsed -2026-02-06T16:25:47.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event attendingTheHearing: OK: 20 case fields parsed -2026-02-06T16:25:47.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendAttendingTheHearing: OK: 20 case fields parsed -2026-02-06T16:25:47.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event selectApplicationType: OK: 16 case fields parsed -2026-02-06T16:25:47.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendSelectApplicationType: OK: 16 case fields parsed -2026-02-06T16:25:47.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hearingUrgency: OK: 10 case fields parsed -2026-02-06T16:25:47.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildrenAndApplicants: OK: 3 case fields parsed -2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendHearingUrgency: OK: 10 case fields parsed -2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event withoutNoticeOrderDetails: OK: 8 case fields parsed -2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event applicantsDetails: OK: 5 case fields parsed -2026-02-06T16:25:47.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendApplicantsDetails: OK: 5 case fields parsed -2026-02-06T16:25:47.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childDetails: OK: 7 case fields parsed -2026-02-06T16:25:47.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childDetailsRevised: OK: 7 case fields parsed -2026-02-06T16:25:47.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildDetails: OK: 7 case fields parsed -2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildDetailsRevised: OK: 7 case fields parsed -2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentsDetails: OK: 5 case fields parsed -2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendRespondentsDetails: OK: 5 case fields parsed -2026-02-06T16:25:47.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ApplicantFamilyDetails: OK: 3 case fields parsed -2026-02-06T16:25:47.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event miam: OK: 41 case fields parsed -2026-02-06T16:25:47.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendMiam: OK: 41 case fields parsed -2026-02-06T16:25:47.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allegationsOfHarm: OK: 74 case fields parsed -2026-02-06T16:25:47.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allegationsOfHarmRevised: OK: 102 case fields parsed -2026-02-06T16:25:47.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendAllegationsOfHarmRevised: OK: 102 case fields parsed -2026-02-06T16:25:47.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendAllegationsOfHarm: OK: 74 case fields parsed -2026-02-06T16:25:47.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherPeopleInTheCase: OK: 2 case fields parsed -2026-02-06T16:25:47.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherChildNotInTheCase: OK: 3 case fields parsed -2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherPeopleInTheCase: OK: 2 case fields parsed -2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherPeopleInTheCaseRevised: OK: 2 case fields parsed -2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherPeopleInTheCaseRevised: OK: 2 case fields parsed -2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherChildNotInTheCase: OK: 3 case fields parsed -2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internationalElement: OK: 7 case fields parsed -2026-02-06T16:25:47.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenInternationalElement: No event case fields found -2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendInternationalElement: OK: 7 case fields parsed -2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event otherProceedings: OK: 4 case fields parsed -2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendOtherProceedings: OK: 4 case fields parsed -2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401OtherProceedings: OK: 2 case fields parsed -2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event litigationCapacity: OK: 5 case fields parsed -2026-02-06T16:25:47.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendLitigationCapacity: OK: 5 case fields parsed -2026-02-06T16:25:47.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event welshLanguageRequirements: OK: 5 case fields parsed -2026-02-06T16:25:47.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendWelshLanguageRequirements: OK: 4 case fields parsed -2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event viewPdfDocument: OK: 10 case fields parsed -2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-task-list: No event case fields found -2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageDocuments: OK: 10 case fields parsed -2026-02-06T16:25:47.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageDocumentsNew: OK: 7 case fields parsed -2026-02-06T16:25:47.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event submitAndPay: OK: 18 case fields parsed -2026-02-06T16:25:47.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event safeguardingAndRiskOfHarm: OK: 46 case fields parsed -2026-02-06T16:25:47.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event addCaseNote: OK: 3 case fields parsed -2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event awaitingInformation: OK: 2 case fields parsed -2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event paymentSuccessCallback: No event case fields found -2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event issueAndSendToLocalCourtCallback: OK: 2 case fields parsed -2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event paymentFailureCallback: No event case fields found -2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentRelationship: OK: 5 case fields parsed -2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event attachScannedDocs: OK: 5 case fields parsed -2026-02-06T16:25:47.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event handleEvidence: OK: 1 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event uploadDocuments: OK: 8 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event caseNumber: OK: 1 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AddCaseNumber: OK: 1 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event returnApplication: OK: 8 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentBehaviour: OK: 2 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401TypeOfApplication: OK: 4 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-application-tab: No event case fields found -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401Home: OK: 2 case fields parsed -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-confidential-tab: No event case fields found -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event internal-update-all-tabs: No event case fields found -2026-02-06T16:25:47.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event WithdrawApplication_Event: OK: 1 case fields parsed -2026-02-06T16:25:47.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event sendToGateKeeper: OK: 7 case fields parsed -2026-02-06T16:25:47.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401SendToGateKeeper: OK: 7 case fields parsed -2026-02-06T16:25:47.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event resendRpa: No event case fields found -2026-02-06T16:25:47.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event sendOrReplyToMessages: OK: 15 case fields parsed -2026-02-06T16:25:47.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401StatementOfTruthAndSubmit: OK: 4 case fields parsed -2026-02-06T16:25:47.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401UploadDocuments: OK: 5 case fields parsed -2026-02-06T16:25:47.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageOrders: OK: 562 case fields parsed -2026-02-06T16:25:47.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event waManageOrders: OK: 561 case fields parsed -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event deleteApplication: OK: 2 case fields parsed -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event submit: OK: 7 case fields parsed -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401resubmit: OK: 2 case fields parsed -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event keepYourDetailsPrivate: OK: 3 case fields parsed -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event confirmYourDetails: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hearingNeeds: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondentMiam: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event courtnav-case-creation: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event courtnav-document-upload: OK: 2 case fields parsed -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenUploadedDocument: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reviewAndSubmit: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event linkCitizenAccount: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizen-internal-case-update: No event case fields found -2026-02-06T16:25:47.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event respondent-responded-to-case: No event case fields found -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createBundle: OK: 3 case fields parsed -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event returnToPreviousState: OK: 1 case fields parsed -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizen-case-update: OK: 3 case fields parsed -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCreate: No event case fields found -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizen-case-submit: No event case fields found -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenAwpCreate: OK: 1 case fields parsed -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenAwpHwfCreate: No event case fields found -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenSaveC100DraftInternal: No event case fields found -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event nocRequest: OK: 1 case fields parsed -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event applyNocDecision: No event case fields found -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event updateRepresentation: No event case fields found -2026-02-06T16:25:47.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event createCaseLink: OK: 4 case fields parsed -2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event maintainCaseLink: OK: 4 case fields parsed -2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event asyncStitchingComplete: No event case fields found -2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hmcCaseUpdDecOutcome: OK: 3 case fields parsed -2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hmcCaseUpdPrepForHearing: OK: 5 case fields parsed -2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event addCafcassOfficer: OK: 1 case fields parsed -2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCaseSubmitWithHWF: No event case fields found -2026-02-06T16:25:47.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allocatedJudge: OK: 7 case fields parsed -2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event listWithoutNotice: OK: 2 case fields parsed -2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100listWithoutNotice: OK: 2 case fields parsed -2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenCaseWithdraw: No event case fields found -2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event listOnNotice: OK: 9 case fields parsed -2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event cafcass-document-upload: OK: 3 case fields parsed -2026-02-06T16:25:47.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event UpdateNextHearingInfo: No event case fields found -2026-02-06T16:25:47.521 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reviewDocuments: OK: 12 case fields parsed -2026-02-06T16:25:47.521 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401ListOnNotice: OK: 5 case fields parsed -2026-02-06T16:25:47.521 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendTypeOfApplication: OK: 4 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendWithoutNoticeOrderDetails: OK: 8 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendApplicantFamilyDetails: OK: 3 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendRespondentRelationship: OK: 5 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendRespondentBehaviour: OK: 2 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendOtherProceedings: OK: 2 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401AmendHome: OK: 2 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenRemoveLegalRepresentative: OK: 1 case fields parsed -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event c100-all-docs-reviewed: No event case fields found -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fl401-all-docs-reviewed: No event case fields found -2026-02-06T16:25:47.522 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event statementOfService: OK: 3 case fields parsed -2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childrenAndApplicants: OK: 3 case fields parsed -2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childrenAndRespondents: OK: 3 case fields parsed -2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildrenAndRespondents: OK: 3 case fields parsed -2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event childrenAndOtherPeople: OK: 3 case fields parsed -2026-02-06T16:25:47.523 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendChildrenAndOtherPeople: OK: 3 case fields parsed -2026-02-06T16:25:47.525 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event miamPolicyUpgrade: OK: 39 case fields parsed -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendMiamPolicyUpgrade: OK: 39 case fields parsed -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hwfProcessCaseUpdate: No event case fields found -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event removeDraftOrder: OK: 4 case fields parsed -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event manageCafcassAccess: OK: 1 case fields parsed -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event enableUpdateHearingActualTask: OK: 2 case fields parsed -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event enableRequestSolicitorOrderTask: OK: 1 case fields parsed -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hmcHearingCompleted: No event case fields found -2026-02-06T16:25:47.528 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event removeDocuments: OK: 2 case fields parsed -2026-02-06T16:25:47.529 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reviewAdditionalApplication: OK: 10 case fields parsed -2026-02-06T16:25:47.529 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event citizenStatementOfService: No event case fields found -2026-02-06T16:25:47.529 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event recordFinalDecision: OK: 8 case fields parsed -2026-02-06T16:25:47.535 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event editReturnedOrder: OK: 118 case fields parsed -2026-02-06T16:25:47.535 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fm5NotificationCaseUpdate: No event case fields found -2026-02-06T16:25:47.535 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event fm5NotificationNotRequiredCaseUpdate: No event case fields found -2026-02-06T16:25:47.536 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event processUrgentHelpWithFees: OK: 12 case fields parsed -2026-02-06T16:25:47.536 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event migrateCase: No event case fields found -2026-02-06T16:25:47.551 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event draftAnOrder: OK: 349 case fields parsed -2026-02-06T16:25:47.570 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event editAndApproveAnOrder: OK: 362 case fields parsed -2026-02-06T16:25:47.589 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminEditAndApproveAnOrder: OK: 387 case fields parsed -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event hearingEditAndApproveAnOrder: OK: 387 case fields parsed -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event pathfinderDecision: OK: 1 case fields parsed -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event pcqUpdateForCitizen: No event case fields found -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event reopenClosedCases: OK: 5 case fields parsed -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event publicCaseAccess: OK: 3 case fields parsed -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event privateCaseAccess: OK: 5 case fields parsed -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event restrictedCaseAccess: OK: 5 case fields parsed -2026-02-06T16:25:47.609 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event changeCaseAccess: No event case fields found -2026-02-06T16:25:47.612 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event serviceOfApplication: OK: 41 case fields parsed -2026-02-06T16:25:47.614 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event confidentialityCheck: OK: 40 case fields parsed -2026-02-06T16:25:47.615 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event serviceOfDocuments: OK: 18 case fields parsed -2026-02-06T16:25:47.615 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event serviceOfDocumentsConfCheck: OK: 17 case fields parsed -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event solicitorStopRepresentingLiP: OK: 4 case fields parsed -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummySolicitorCreate: OK: 5 case fields parsed -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummySolicitorCreateCourtNav: No event case fields found -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummyAdminCreateNoc: OK: 5 case fields parsed -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportPaymentSuccessCallback: No event case fields found -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event tsDummyPaymentAwP: OK: 2 case fields parsed -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportRespondentTaskListA: No event case fields found -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportRespondentTaskListB: No event case fields found -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportRespondentTaskListC: No event case fields found -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportCAUrgentCases: OK: 5 case fields parsed -2026-02-06T16:25:47.616 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event testingSupportDummyCase: No event case fields found -2026-02-06T16:25:47.617 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event amendCourtDetails: OK: 4 case fields parsed -2026-02-06T16:25:47.617 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event transferToAnotherCourt: OK: 11 case fields parsed -2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event uploadAdditionalApplications: OK: 14 case fields parsed -2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event awpPaymentSuccessCallback: OK: 1 case fields parsed -2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event awpPaymentFailureCallback: No event case fields found -2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event allAwPInReview: No event case fields found -2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event processHwfUpdateAwpStatus: OK: 1 case fields parsed -2026-02-06T16:25:47.618 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing event case fields for case type PRLAPPS and event adminCreate: OK: 10 case fields parsed -2026-02-06T16:25:48.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.definition.store.excel.parser.EventParser Parsing events for case type PRLAPPS: OK: 269 case fields parsed -2026-02-06T16:25:48.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchAliasFieldParser Parsed 0 search alias fields for case type PRLAPPS -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-courtadmin for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-solicitor for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile citizen for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-judge for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-la for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-superuser for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-systemupdate for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile courtnav for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-caa for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-approver for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-wa-task-configuration for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-ras-validation for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile GS_profile for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-externaluser-viewonly for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-readonly for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile hearing-centre-team-leader for case type PRLAPPS: OK -2026-02-06T16:25:48.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseTypeParser Parsing access profile caseworker-privatelaw-cafcass for case type PRLAPPS: OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-courtadmin', crud 'RUD': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-judge', crud 'RUD': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-la', crud 'RUD': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'RUD': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndCafcassOfficers', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.280 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'testCaseName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'testCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'testCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseNameText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-courtadmin', crud 'CR': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-judge', crud 'CR': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-la', crud 'CR': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-superuser', crud 'CR': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteHeaderCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'subject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNote', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addCaseNoteTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepHeader', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepHeader', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepAndPartiesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeLegalRepInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmYesNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.281 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmHint', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmSubstanceAbuseDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestation', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.282 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupation', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOccupationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.283 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestraining', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersRestrainingDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctive', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.284 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticBehaviours', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseBehavioursDocmosis', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuses', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildAbductionReasons', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreats', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildrenLocationNow', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAbductionChildHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.286 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newAgreeChildOtherContact', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.287 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificJudgeOrLegalAdviserNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviser', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNameAndEmail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.288 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdviserList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudiciary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tierOfJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ApplicationPaymentLinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabCaseNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabCaseNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabHearingUrgencyLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabApplicantDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.289 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabRespondentDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabDeclarationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'declarationTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildRevisedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabTypeOfApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401TypeOfApplicationTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.290 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmRevisedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOverviewTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOverviewTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabMiamLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.291 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherProceedingsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabInternationalElementLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAttendingTheHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearingTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabLitigationCapacityLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.292 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabWelshLanguageRequirementsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabAllegationsOfHarmDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOrdersTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOrdersTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildAbductionTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedOtherConcernsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleInTheCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherPeopleRevisedInTheCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedChildContactTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleInTheCaseRevisedTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabOtherChildNotInTheCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildNotInTheCaseTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndApplicantsRelationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.294 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantsRelationTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndRespondentRelationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTabChildAndOtherPeopleRelationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsRevisedExtraTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsExtraTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.295 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childInfoTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childToBeProtectedTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ApplicantTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401SolicitorDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeDetailsTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.296 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withoutNoticeOrderTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RespondentTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'relationshipToRespondentTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingsDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHomeEntered', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.297 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTableLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildDetailsTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fL401ApplicationTabDeclarationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedDATable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmRevisedCATable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewByDate', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awaitingInformationReasonList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenAwpPayments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenAwpPayments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplicationsFlag', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.298 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedBarrister', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPageAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'coverPagePartyName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-bulkscan', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanCaseReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'scannedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'evidenceHandled', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScanEnvelopes', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConfidentiality', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConfidentiality', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildInternationalElements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReasonableAdjustments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildTypeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildReturnUrl', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildMaim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDocumentsCopy', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.299 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDocumentsCopy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHearingUrgency', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildApplicantDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildRespondentDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherChildrenDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildOtherPersonsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantConsentMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentReferenceNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildSafetyConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildScreeningQuestions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildHelpWithFeesDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildConsentOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildStatementOfTruth', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100RebuildChildPostCode', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesReferenceNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noOfDaysRemainingToSubmitCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-readonly', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.300 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantPcqId', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1ADraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c1AWelshDraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8Document', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8WelshDraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8DraftDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.301 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassDateTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.302 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.303 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.304 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherExternal', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.305 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantBarrister5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile '[C100APPLICANTBARRISTER1]', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor1InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor2InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor3InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor4InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicantSolicitor5InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty1InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty2InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty3InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty4InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caOtherParty5InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor1InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor2InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor3InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor4InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentSolicitor5InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5InternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister1ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister2ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister3ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister4ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondentBarrister5ExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'flagLauncherInternal', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseFlagsTaskCreated', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantInternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerInternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantBarristerExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantSolicitorInternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentInternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerInternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentBarristerExternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentSolicitorInternalFlags', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReviewLangAndSmReq', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isReviewLangAndSmReqReviewed', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleTransitionDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleInformation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createBundleSubmitLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNext', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bundleCreationSubmittedWhatHappensNextLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtSeal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListReturnLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'ctsc-team-leader', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseHistory', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelPleaseUploadDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelPleaseUploadDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelDocumentsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelDocumentsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelContactOrResidenceOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelContactOrResidenceOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelC8FormForConfidentiality', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelC8FormForConfidentiality', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelUploadOtherDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelUploadOtherDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'contactOrderDocumentsUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8FormDocumentsUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelLanguageRequirements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WelshNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInterpreterNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'interpreterNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAccessibility', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDisabilityPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelAdjustmentsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'adjustmentsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsDescription', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecialArrangementsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelSpecialArrangementsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelIntermediaryDescription', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isIntermediaryNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForIntermediary', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersApplyingFor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraConsentOrderNotification', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraConsentOrderNotification', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'natureOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraWhyMakingApplication2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationPermissionRequiredReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraApplicationDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safetyWelfareConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeNotified', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasPassport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductedBefore', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childHasMultiplePassports', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossession', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportPossessionOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPoliceInvolvedDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAtRiskOfAbductionReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childWhereabouts', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paraChildAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexually', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseSexuallyHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysically', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbusePhysicallyHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinancially', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseFinanciallyHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomestic', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbuseDomesticHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseStartDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseOngoing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDrugsAlcoholSubstanceAbuseHelpSought', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherSafetyOrWelfareConcernsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelWhereChildrenLive', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childPassportDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'children', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelChildrenAdditionalQuestions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenKnownToAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndLocalAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenUnderChildProtection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isChildrenWithSameParents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentsAndTheirChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibilities', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoChildrenLiveWith', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAddressAndAdultsLivingWith', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherCourtCases', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isExistingProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenInProceeding', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'existingProceedingsWithDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheApplicants', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicants', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsFL401', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelTheRespondents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentsFL401', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOthersToNotify', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'othersToNotify', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartyInTheCaseRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'labelOtherChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMIAMLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAttendedMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMIAMLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'claimingExemptionMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMIAMLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsSelectAll', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionsChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceSelectAll', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamDomesticViolenceChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamChildProtectionConcernList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonSelectAll', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamUrgencyReasonChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPreviousAttendanceChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamOtherGroundsChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mediatorRegistrationNumber1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familyMediatorServiceName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soleTraderName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationPageMessage1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamCertificationDocumentUpload1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'consentOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftConsentOrderFile', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseUrgent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseUrgencyTimeAndReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'effortsMadeWithRespondents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouNeedAWithoutNoticeHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForApplicationWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouRequireAHearingWithReducedNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'setOutReasonsBelow', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'areRespondentsAwareOfProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFeesNotAvailable', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.329 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-solicitor', crud 'CR': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-solicitor', crud 'CR': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrRespondentCaseName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CaseAccessCategory', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFromCourtNav', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedCaseTypeID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTypeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'state', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityDisclaimerLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100SelectFamilyCourtLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ConfidentialityStatementDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityFactors', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityReferrals', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactors', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'litigationCapacityOtherFactorsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherState', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'habitualResidentInOtherStateGiveReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'jurisdictionIssueGiveReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestToForeignAuthorityGiveReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'languageRequirementApplicationNeedWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'welshLanguageRequirementApplicationNeedEnglish', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsAdditionalQuestionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthority', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenKnownToLocalAuthorityTextArea', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenSubjectOfChildProtectionPlan', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmHint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmDomesticAbuseYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbductionYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildAbuseYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'physicalAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emotionalAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'psychologicalAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sexualAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'financialAbuseVictim', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAbductionReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreats', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousAbductionThreatsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenLocationNow', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPassportOfficeNotified', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildHasPassport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosession', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionChildPassportPosessionOtherDetail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionOtherSafetyConcernsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abductionCourtStepsRequested', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'behaviours', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmOrdersLabelDetail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestraining', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctive', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlace', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNonMolestationDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOccupationDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersRestrainingDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.339 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmOtherConcernsCourtActions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildSupervisedTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'agreeChildOtherContact', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previousOrOngoingProceedingsForChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100draftOrderDocLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401draftOrderDocLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'id', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDeclaration', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeStmtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'payAgreeStatement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAgreeStatement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPage', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayNextPageDesc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayFee', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'feeAmount', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100submitAndPayDownloadApplicationLinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpWithFees', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabelText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPDFlinkLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceRequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceRequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentCallbackServiceRequestUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'paymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationDateInfoObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentRelationOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returningAnApplicationText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnMessage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'familymanCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localCourtAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'userInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseworkerEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantSolicitorEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'issueDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantsConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ChildrenConfidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TestField', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TestField', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBehaviourData', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfApplicationLinkToCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantFamilyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantChildDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderWithoutGivingNoticeToRespondent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForOrderWithoutGivingNotice', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bailDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDtailsForWithoutNoticeOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'home', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmitted', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OtherProceedingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruth', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingUrgencyLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNotificationSent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtEmailFound', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isDocumentGenerated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSolicitorOrgName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelectionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitCountyCourtSelection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantAge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseOrigin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasDraftOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'numberOfAttachments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSubmittedTimeStamp', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateSubmittedAndTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseCreatedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsApplyingFor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC2Application', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicantsList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryOtherApplicationsBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'temporaryC2Document', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadC2Link', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createdDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lastModifiedDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadedDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAddCaseNumberAdded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationFeesToPayText', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFees', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsHelpWithFeesNumber', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfRequestedForAdditionalApplications', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'representedPartyType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'taskListVersion', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInHearingState', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isInvokedFromTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isNonWorkAllocationEnabledCourtSelected', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicantContactInstructions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserRole', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNoteId', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNoteId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNoteId', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TTL', access profile 'TTL_profile', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'TTL', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'allocated-magistrate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'senior-tribunal-caseworker', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'tribunal-caseworker', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'ctsc', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'hearing-centre-admin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'componentLauncher', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersSubmittedWithApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvedOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'standardDirectionsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transcriptsOfJudgements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistratesFactsAndReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesFromHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'preliminaryDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'positionStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.354 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5Statements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantC1AResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsWithinProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'applicationsWithinProceedingsRes' -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'MIAMCertificate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'prevOrdersSubmittedWithAppl', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersFromOtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentC1AResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationsFromOtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessStatementAndEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherWitnessStatements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityOtherDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'CAFCASSReportAndGuardian', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childImpactReport2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section7Report', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field '16aRiskAssessment', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialGuardianshipReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'localAuthorityDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'section37Report', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.357 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sec37Report', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'expertReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalReports', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'DNAReports_expertReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resultsOfHairStrandBloodTests', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeDisclosures', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'medicalRecords', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'drugAndAlcoholTest(toxicology)', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'policeReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondentToAndFromCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailsToCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'publicFundingCertificates', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticesOfActingDischarge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestForFASFormsToChange', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'witnessAvailability', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'lettersOfComplaint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SPIPReferralRequests', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeOfficeDWPResponses', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalCorrespondence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'impInfoAboutAddrContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'privacyNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialMeasures', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'attendingTheHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSummary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidential', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anyOtherDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'ctsc-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c8ArchivedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseInvites', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinks', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksTabTitle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'maintainCaseLinksFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseLinksFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'LinkedCasesComponentLauncher', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'newChildDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndApplicantRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelations', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndApplicantRelationsSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndOtherPeopleRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndOtherPeopleRelationsSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'buffChildAndRespondentRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelations', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childAndRespondentRelationsSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenResponseC7DocumentList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocumentList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeopleKnowYourContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentiality', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recordChildrenLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheDecisionAboutAllChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOptionsForFinalDecision', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDecisionLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateFinalDecisionWasMade', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutcomeForChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalOutComeLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalCaseClosedDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosed', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedRespondentPack', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unservedCitizenRespondentPack', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedApplicantPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedOthersPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedLaPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationServedYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectionReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedCafcassCymruPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityCheckWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.365 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8EngDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8WelDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appAC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appBC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appCC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appDC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appEC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respBC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respCC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respEC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherAC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherBC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherCC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEC8RefugeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForAmendCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cantFindCourtCheck', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferredCourtFrom', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonForTransferToAnotherCourtDa', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'anotherReasonToTransferDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCourtWarning', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401Doc2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCourtNavCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deleteApplicationNote', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deletionConsent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deletionConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deletionConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dfjArea', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'swanseaDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'humbersideDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'essexAndSuffolkDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wolverhamptonDFJCourt', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isEngDocGen', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWelshDocGen', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'accessCodeNotifications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'citizen', crud 'RU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-cafcass', crud 'RU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollection', access profile 'caseworker-privatelaw-readonly', crud 'RU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43Label', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c43LabelBold', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderCollectionId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassSafeguardingIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioSafeGuardingOnIssueCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassCymruSafeguardingIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCafcassOrCymruList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFurtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewAtSecondGateKeeping', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDecisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepsAllocationTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateNamedJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationIsReservedTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingPermissionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingOn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingPlaceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortenedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortenedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentDayShortened', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgentByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioHearingUrgencyRefusedDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeApprovedApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeFirstHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeNotApprovedLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraStartDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirectionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParticipationDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementWritten', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAttendanceAtMiamLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCourtToInterpretersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPersonWhoRequiresInterpreter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterDialectRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUpdateContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioNextStepJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationMagistrateLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationMagistrateLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocatedToJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioAllocatedToJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioReservedToJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioReservedToJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetailLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFirstHearingUrgencyDetailLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedAnotherReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingRefusedAnotherReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeAnotherReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeAnotherReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedReasonLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingRefusedReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPositionStatementOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamAttendingPersonName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioOtherLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCareLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioParentWithCare', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermissionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioApplicationToApplyPermission', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioDisclosureOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPreamblesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioRightToAskCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCafcassCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNextStepsCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSafeGuardingNewPartnerCymruLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSectionReportOrChildImpactLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassNextStepEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruFileAndServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruNextStepEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7EditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ImpactAnalysisOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7FactsEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7daOccuredEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7ChildImpactAnalysis', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNameOfCouncil', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassCymruReportSentByDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartyToProvideDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnersToCafcassLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7Check', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSection7CheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNewPartnerPartiesCafcassCymruText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsCaseNeedsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesTempList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsTempList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassOrCymruTempList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTempList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtTempList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.386 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceTempList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherTempList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFurtherDirectionDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.387 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferApplicationSpecificReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationProhibitionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEditContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationSittingBeforeOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationStartDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtHavingHeard', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740Label', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.388 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx740', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationQualifiedLegal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoTransferCourtDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationCourtCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741Label', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.389 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCrossExaminationEx741', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocumentationAndEvidenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCopiesSentToCafcass', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsMaximumPages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.390 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpecifiedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingPartiesDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendanceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSpipAttendance', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHospitalRecordsDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDisclosureUploadedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.391 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpUploadedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolUploadedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.392 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWitnessStatementsCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsFilingCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInstructionsDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscApplicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoApplicantNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRespondentNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.393 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscFilingCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMedicalDiscDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpApplicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGpRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPApplicantNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoGPRespondentNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromGpDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromDiscGpLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.394 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsApplicantName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLsRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSApplicantNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLSRespondentNameLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLetterFromSchoolCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoScheduleOfAllegationsCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.395 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisClosureProceedingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDocsEvidenceWitnessEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingsAndNextStepsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDecisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingPlaceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendanceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.396 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForDraLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoArrangeInterpretersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGKLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeededLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirectionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRHLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.397 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterSecondGK', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSecondHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAllocationTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentBecauseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCheckList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentCourtConsider', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.398 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentTimeShortened', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentMustBeServedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingNotNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDisputeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraStartDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParticipationDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.399 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementWritten', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamAttendingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingOn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingBeforeAList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraDecideBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraStartDateAndTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.400 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsDraHearingByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceCourtDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementConferenceByWayOf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoJoiningInstructionsForRH', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingAllegationsMadeBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.401 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtHasRequested', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllegationsDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWrittenResponseDeadlineDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingReportsAlsoSentTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingMaximumPages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingHowManyWitnessEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPersonNeedsInterpreter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterDialectRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUpdateContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.402 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNamedJudgeFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationDistJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationCircuitJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocationMagistratesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoReservedToLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocatedToLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.403 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherCheckDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPositionStatementOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherCheckDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoMiamOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.404 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherCheckLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFactFindingOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoInterpreterOtherDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.405 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoCafcassFileAndServeDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeguardingCafcassCymruDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingUrgentAnotherReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeeping', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateOrReserveJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoNextStepsAfterGatekeepingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAllocateDecisionJudgeFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.406 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoHearingCourtRequests', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDirectionsForFactFindingHearingLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoNeedsToRespondAllegationsListText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoWhoMadeAllegationsListText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.407 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityTextArea', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityReportSubmitByDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoLocalAuthorityDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoOtherLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDisclosureOfPapersCaseNumbers', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCareLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.408 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoParentWithCare', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoAdditionalDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSdoListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPreamblesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoRightToAskCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.409 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPartiesRaisedAbuseCollection', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToServeOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOrCymruNeedToProvideReport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenReportsMustBeFiled', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderEndsInvolvementOfCafcassOrCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.410 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatDoWithOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrdersDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewUploadedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewDraftOrderWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doYouWantToEditTheOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderSolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.411 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatToDoWithOrderCourtAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentative', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalRepInstructionsPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsToLegalRepresentativeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'yourInstructionsToLrLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionsFromJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderUploadedAsDraftFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderOptionType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.412 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'downloadOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openOrderAndReviewContentLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'makeChangesToUploadedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrAmendDirectionsFromJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAmendedOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedUploadOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendedOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.413 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'blankOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404OccupationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.414 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404nonMolestationLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyUploadJourney', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeNotesEmptyDraftJourney', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'rejectedOrdersDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.415 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editOrderTextInstructionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalWelshDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFl401CaseCreatedForWithOutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocumentHintLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401OnNoticeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.416 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401WithOutNoticeReasonToRespondentLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withOutNoticeReasonToShareApplicantLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reducedNoticePeriodDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkedCaCasesFurtherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantNeedsFurtherInfoDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNeedsFileStatementDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDirectionsToAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401LonOrderCompleteToServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401RejectListWithoutNoticeHearingRequestLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.417 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ReasonsForListWithoutNoticeRequested', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ListOnNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401listOnNoticeHearingInstruction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401StmtOfTruthResubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401ConfidentialityCheckResubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessDuplicate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitness', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentWitnessLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.418 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadWitnessDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadDocumentSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl401UploadSupportDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNameHmctsInternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SearchCriteria', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SearchCriteria', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'SearchCriteria', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementCategory', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementCategory', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementCategory', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseManagementLocation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingId', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentHearingStatus', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingListed', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfAppList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'beforeYouStart', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.419 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'updatePayBubble', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approveDeliveryManagerOrSeniorManager', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'Checkthehelpwithfeesapplication', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hwfApplicationDynamicData', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationHelpwithfeesreferenceApplicantApplication', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'outstandingBalance', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerAgreedApplicationBeforePayment', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addHwfCaseNoteShort', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheCaseInDraftState', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.420 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudge', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedReasonsForListOnNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAndAdditionalReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstructionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listWithoutNoticeHearingInstruction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtCodeFromFact', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentCategoryChecklist', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherEvidences', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.421 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainApplicationDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'giveDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppDocForTabDisplay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mainAppNotConf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'correspondenceForTabDisplay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'corrNotConf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocumentsForTabDisplay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.422 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherDocNotConf', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsWarningText2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsTriggeredBy', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageDocumentsRestrictedFlag', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8DocumentPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21Order', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.423 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'typeOfC21OrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21HearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder13', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21Order', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedC21OrderLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderC21SolicitorLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c21OrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addOrderDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.424 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel11', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentalResponsibility', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'parentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder7', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassOfficeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caffcassCymruOfficeName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel12', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.425 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createAnOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createSelectOrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withdrawnOrRefusedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectTypeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'doesOrderClosesCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closeCaseDoableActions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderByConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCaseWithdrawn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.426 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingsType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderMadeByLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recitalsOrPreamble', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.427 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'transferCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsForTransfer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseTransferOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkYourOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'previewOrderDocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkOrderRestrictionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipientsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrderRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassRecipient', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherRecipient', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.428 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childListForSpecialGuardianship', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSummaryLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderSolicitorLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.429 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeader1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel5', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel7', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel6', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel10', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.430 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel13', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel14', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel19', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderHeaderLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderHeaderLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderCheckOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderCheckOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'RU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-cafcass', crud 'RU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderCollection', access profile 'caseworker-privatelaw-readonly', crud 'RU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantName1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.431 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderRespondentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'magistrateLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder10', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'guardianTextBox', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel12', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childDetailsManageOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDateOfBirth', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addressTheOrderAppliesTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404bCustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.432 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtDeclares2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'homeRights', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicantInstructions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'theRespondent2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDay2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentStartTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEndTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.433 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenTheyLeave', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'moreDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest6', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'instructionRelating', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'powerOfArrest5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderMade1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEnds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.434 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOrderEndsTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'datePlaceHearingTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtName2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ukPostcode2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationCost', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'appointedGuardianName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404CustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateUploadOrderMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateUploadOrderMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.435 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daOrderForCaCase', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel20', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whenToServeOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersNeedToBeServed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'loggedInUserType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrderCreatedDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl404SchoolDirections&Details', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenListForDocmosis', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioCaseReviewHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.436 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioPermissionHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentFirstHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioUrgentHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioWithoutNoticeHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dioFhdraHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoUrgentHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoFhdraHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoPermissionHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoDraHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.437 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sdoSettlementHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401APPLICANTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401RESPONDENTBARRISTER]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameEditScreenLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel7', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel8', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel9', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.438 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel10', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel11', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameLabel13', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSolicitorLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameSummaryLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameHearingLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameDirectionsToAdminLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameInstructionsFromJudgeLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedHearingType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingPageNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markedToServeEmailNotification', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.439 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingUser', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'performingAction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaReviewRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForWA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSdoSelected', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadHintLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForSolicitorCreatedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForAdminCreatedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.440 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderNameForJudgeCreatedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isHearingTaskNeeded', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hearingOptionSelected', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderApproved', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whoApprovedTheOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isMultipleHearingSelected', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeLaManagerReviewRequired', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'listElementsSetToDefaultValue', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'editedOrderHasDefaultCaseFields', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.441 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'requestSafeGuardingLetterUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'safeGuardingLetterUploadDueDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkForAutomatedHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'finalisationDetails' -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.442 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtname', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingRequiredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createOneHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'creatingHearingOptionalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createMultipleHearingLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.443 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ordersHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorOrdersHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrderLabel19', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingRequiredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'createHearingOptionalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingRequiredLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solicitorCreateHearingOptionalLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isCafcassCymru', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.444 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401ApplicantSolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isFL401RespondentSolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.445 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant1SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant2SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant3SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant4SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicant5SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.446 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5Present', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent1SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent2SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent3SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent4SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isRespondent5SolicitorPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAutomatedHearingPresent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.447 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.448 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingDateExpiry', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingExpiryTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'underTakingFormSign', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel15', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedOrder2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.449 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDownloadOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderDownloadOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmendLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersDocumentToAmend', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderReplaceOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrderLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrdersAmendedOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectCheckOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'amendOrderSelectJudgeOrLa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.450 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfJudgeToReviewOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfLaToReviewOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerCheckAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'managerCheckAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeDirectionsToAdminAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOrderCompleteToServeAmendOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel21', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrderAdditionalDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel22', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.451 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingOptionsForNonLegalRep', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAdminText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtBailiffText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherParties', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassCymruEmail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassEmailId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.452 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOrgDetailsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'personallyServeRespondentsOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'displayLegalRepOption', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.453 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel23', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOnlyC47aOrderSelectedToServe', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'manageOrderHeaderLabel24', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveToRespondentOptionsOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servingRespondentsOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'recipientsOptionsOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherPartiesOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveOtherPartiesCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.454 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'deliveryByOptionsCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'emailInformationCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'postalInformationCaOnlyC47a', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalOrderDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childArrangementOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fcOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherOrdersOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nameOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isTheOrderUploadedByConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.455 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'approvalDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'uploadOrderDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messagesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendOrReplyEventLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.456 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessageLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildInvolvedInMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.457 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantAttendedMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuClaimingExemptionMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamPolicyUpgradeExemptionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuExemptionReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidences', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuIsDomesticAbuseEvidenceProvided', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuAddEvidenceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.458 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDomesticAbuseEvidenceDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuNoDomesticAbuseEvidenceReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submissionRequiredFieldsInfo9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuChildProtectionConcernReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuUrgencyReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.459 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuPreviousMiamAttendanceReason', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuDocFromDisputeResolutionProvider', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuTypeOfPreviousMiamAttendanceEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuCertificateByMediator', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuMediatorDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'miamExemptionLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuOtherExemptionReasons', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.460 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'mpuApplicantUnableToAttendMiamReason2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'nextHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeOrganisationRequestField', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.461 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caRespondent5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daApplicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant1Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant2Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant3Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant4Policy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-caa', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.462 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caApplicant5Policy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-approver', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'daRespondentPolicy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5ReminderNotifications', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'fm5RemindersSent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotPartInTheCaseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.463 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'childrenNotInTheCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabApplicantsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildrenLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabRespondentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherPartiesRevisedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildNotInThePartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.464 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndApplicantPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabChildAndRespondentPartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'partiesTabOtherChildAndOtherPeoplePartiesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isPathfinderCase', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'PaymentHistory', access profile 'payments', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'PaymentHistory', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'PaymentHistory', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffQuarantineDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tempQuarantineDocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.465 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavQuarantineDocumentList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'historicalRefugeDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removableDocuments', access profile 'caseworker-privatelaw-superuser', crud 'CRD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'documentsToBeRemoved', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrdersDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeOrderNameLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeOrderNameLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeOrderNameLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheRemoveOrderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheRemoveOrderLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'checkTheRemoveOrderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrderText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrderText', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'removeDraftOrderText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentStatusLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherStatusMsg', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'changeStatusOptions', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.466 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reopenStateTo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'abilityToParticipateInProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohDomesticAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbductionYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.467 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohChildAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohHint', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohSubstanceAbuseDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.468 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOrdersLabelDetail', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.469 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersNonMolestationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOccupationDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.470 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtection', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersForcedMarriageProtectionDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestraining', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.471 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersRestrainingDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctive', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.472 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersOtherInjunctiveDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlace', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDateIssued', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceEndDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCurrent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCourtName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOrdersUndertakingInPlaceDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.473 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respOthersConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticAbuseBehavioursSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respDomesticBehaviours', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbuses', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildAbductionReasons', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreats', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.474 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respPreviousAbductionThreatsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildrenLocationNow', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPassportOfficeNotified', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionPreviousPoliceInvolvementDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAbductionChildHasPassport', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAohOtherConcernsCourtActions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllegationsOfHarmChildContactLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildUnsupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildSupervisedTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.475 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAgreeChildOtherContact', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.476 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuseSubLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.477 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respWhichChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPhysicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskPsychologicalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskSexualAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskEmotionalAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAllChildrenAreRiskFinancialAbuse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respChildPassportDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.478 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAohYesNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAllegationsOfHarm', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseDescLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.479 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDomesticAbuseBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseDescLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbuseBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbductionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.480 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentChildAbduction', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcernsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentOtherConcerns', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAttendingTheCourt', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respAttendingTheCourtDaActLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.481 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'domesticAbuseProvisionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentADocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.482 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.483 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAc8Documents', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentBc8Documents', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentCc8Documents', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentDc8Documents', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.484 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentEc8Documents', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfirmEditContactDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentConsentToApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internationalElementChild', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepContactDetailsPrivate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.485 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummaryHeading', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialListDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateSummary', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtActionHeading', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtAction', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateNoHeading', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'keepDetailsPrivateNoHeading', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noNeedOfPrivateDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noNeedOfPrivateDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorHaveYouAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.486 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'whatIsMiamLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'helpMiamCostsExemptionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.487 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'hasRespondentAttendedMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentWillingToAttendMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentReasonNotAttendingMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'currentOrPastProceedingsForChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK -2026-02-06T16:25:48.488 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentExistingProceedings', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmYesOrNoResponse', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmWelshDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.489 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentResponseToAllegationOfHarm', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responseToAllegationsOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponse', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.490 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel5', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel6', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel7', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel8', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel9', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentNameForResponseLabel10', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'resSolConfidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.491 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'c100ResSolSubmitAndPayAgreeSignStmtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentAgreeStatement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolSuccessLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseStateLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseCourtLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.492 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolResponseDownloadLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC7WelshResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.493 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC1AResponseDocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentSolicitorName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.494 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondentTaskListLabelE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'viewPdfResponseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7Response', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.495 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'linkToDownloadC7ResponseLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC7WelshResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.496 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC1ADocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftC8ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalC8ResponseDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPrivateReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTabLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToPrivateTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.497 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsPublicReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReasonLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'markAsRestrictedReason', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseSecurityClassification', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTabLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reasonsToRestrictTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'assignedUserDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnToPreviousStateLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnToPreviousStateLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'returnToPreviousStateLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectedAdditionalApplicationsBundle', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isAdditionalApplicationReviewed', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.498 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel3', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDocsLabel4', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDecisionYesOrNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docToBeReviewedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'docLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'showLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'reviewDoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalProfUploadDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.499 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'cafcassUploadDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtStaffUploadDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'bulkScannedDocListConfTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'restrictedDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'citizenUploadedDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.500 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'courtNavUploadedDocListDocTab', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'chooseSendOrReply', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageContent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'openMessages', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'closedMessages', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessageAttachDocsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReply', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeForSendAndReply', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.501 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'externalMessagesHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendingMessagesHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messages', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyDynamicList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'respondToMessage', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'messageReplyTableLabel2', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'replyMessageObject', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendMessageObject', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'internalMessageAttachDocsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'letGateKeepersKnowLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sendToGateKeeperHint', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.502 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isSpecificGateKeeperNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isJudgeOrLegalAdviserGatekeeping', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'judgeName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'legalAdvisorList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'gatekeepingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'selectOrdersLabel1', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationScreen1', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentPlaceHolder', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sentDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serveTheseOrdersLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'automaticDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.503 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pd36qLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'noticeOfSafetySupportLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetterLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangementsLetter', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocuments', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalDocumentsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.504 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationHeader', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'headerLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'finalServedApplicationDetailsList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaHeaderLabel22', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeToRespondentOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRecipientsOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.505 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherParties', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassServedOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruServedOptions', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassCymruEmail', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailId', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeoplePresentInCaseFlag', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaIsOrderListEmpty', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.506 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCitizenServingRespondentsOptionsDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isConfidential', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'proceedToServing', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetailsArePresentBanner', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaServeC8ToLocalAuthorityYesOrNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.507 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'addDocumentsForLaLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaDocumentDynamicListForLa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaLaEmailAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningText', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.508 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextCA', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'missingAddressWarningTextDA', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isC8CheckNeeded', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'responsibleForService', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.509 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isOccupationOrderSelected', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isApplicantRepresented', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'productHearingBundleOn', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confirmRecipients', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCheckRestrictionsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaConfirmRecipientsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOrderSentToSolicitorLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaApplicantsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaRespondentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.510 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherPeopleList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailOptionChecked', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailOptionChecked', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaCafcassEmailAddressList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'soaOtherEmailAddressList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfApplicationLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedPackLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedPackLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialCheckFailedLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:48.511 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'sodSelectDocumentsLabel' -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field 'sodAdditionalDocumentsLabel' -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalDocumentsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipients', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodAdditionalRecipientsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.511 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodDocumentsCheckOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodSolicitorServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodCitizenServingRespondentsOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodUnServedPack', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsDetailsList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'sodServeToRespondentOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsConfCheckWarningText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'canDocumentsBeServed', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'serviceOfDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'unServedDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'servedDocumentsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'pui-case-manager', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.512 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'ServiceRequest', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepWarningText', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepWarningText', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepHeader', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepHeader', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepChooseParties', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER1]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER2]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER3]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER4]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTBARRISTER5]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'solStopRepDisclaimer', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.513 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipientLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceAddRecipient', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForApplication', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceForOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'stmtOfServiceWhatWasServed', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDisclaimerSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'submitAndPayDownloadApplicationWelshLink', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.514 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'pathfinderLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allocatedJudgeDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'refugeCase', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatusLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseStatus', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.515 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialityDetailsLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'confidentialDetails', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'urgencyDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'applicationTypeDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.516 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarm', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'allegationOfHarmRevised', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangmentLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'specialArrangement', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'orderAppliedForLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.517 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'summaryTabForOrderAppliedFor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsLabelForSummaryTab', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingsForSummaryTab', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmissionLabel', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'dateOfSubmission', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.518 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'otherProceedingEmptyTable', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'caseClosedDate', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentServiceRequestReferenceNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentStatus', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'tsPaymentStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpWaTaskToBeCreated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'awpHwfRefNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'additionalApplicationsBundleId', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'draftOrderDocWelsh', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-wa-task-configuration', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.519 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'withDrawApplicationData', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:48.520 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser Parsing access profile for case type 'PRLAPPS', case field 'isWithdrawRequestSent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:48.520 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseFieldParser No row is defined for case type 'PRLAPPS', case field '[STATE]' -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyCaseAssignedRole', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyReference', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationID', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationName', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PreviousOrganisations', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PrepopulateToUsersOrganisation', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'LastNoCRequestedBy', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyCaseAssignedRole', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyReference', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationID', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationName', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PreviousOrganisations', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PrepopulateToUsersOrganisation', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'LastNoCRequestedBy', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.201 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyCaseAssignedRole', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'OrgPolicyReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'Organisation.OrganisationName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PreviousOrganisations', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'PrepopulateToUsersOrganisation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'applicantOrganisationPolicy', complexFieldReference 'LastNoCRequestedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'c2DocumentBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'otherApplicationsBundle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'uploadedDateTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'author', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'payment', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'partyType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'additionalApplicationsBundle', complexFieldReference 'selectedParties', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.203 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'magistrateLastName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOrderMade', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.204 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'approvalDate', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'recitalsOrPreamble', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDirections', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.205 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherDirectionsIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'furtherInformationIfRequired', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'justiceLegalAdviserFullName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistratesLastName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.206 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'wasTheOrderApprovedAtHearing', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isCaseWithdrawn', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeOrMagistrateTitle', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderByConsent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.207 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.208 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'citizen', crud 'U': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'citizen', crud 'U': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'parentName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.209 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'appointedGuardianName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.210 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402CaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402Applicant', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.211 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersFl402ApplicantRef', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfhearing', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.212 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'dateOfHearingTimeEstimate', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtname', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'fl402HearingCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.213 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'cafcassOfficeDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtName', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCourtAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.214 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersCaseNo', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicant', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersApplicantReference', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondent', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.215 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentReference', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentDob', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersRespondentAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingRepr', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.216 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingSolicitorCounsel', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingPerson', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingAddress', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersUnderTakingTerms', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.217 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrdersDateOfUnderTaking', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingDateExpiry', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingExpiryDateTime', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.218 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'underTakingFormSign', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.219 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderSelectionType', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'orderCreatedBy', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderUploadedByJudgeOrAdmin', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.220 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hasJudgeProvidedHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'hearingsType', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.221 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'draftOrderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderUploaded', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.222 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderDocumentNeedSeal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderTypeId', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.223 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'withdrawnRequestType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.224 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isWithdrawnRequestApproved', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.225 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'doesOrderClosesCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocumentWelsh', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderClosesCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.226 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childrenList', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.227 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isTheOrderAboutAllChildren', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'orderDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'otherDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.228 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'serveOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'dateCreated', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.229 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'manageOrderHearingDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-solicitor', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'citizen', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'judgeNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-solicitor', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'citizen', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-cafcass', crud 'U': OK -2026-02-06T16:25:49.230 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-readonly', crud 'U': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'adminNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sdoDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.231 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectedHearingType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isOrderCreatedBySolicitor', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.232 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'typeOfChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'c21OrderOptions', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.233 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childArrangementsOrdersToIssue', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'selectChildArrangementsOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'childOption', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.234 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'bulkPrintOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'isAutoHearingReqPending', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.235 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'sosStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'fl404CustomFields', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-wa-task-configuration', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.236 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-cafcass', crud 'R': OK -2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'orderCollection', complexFieldReference 'finalisationDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'TTL', complexFieldReference 'SystemTTL', access profile 'TTL_profile', crud 'R': OK -2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'TTL', complexFieldReference 'Suspended', access profile 'TTL_profile', crud 'CRU': OK -2026-02-06T16:25:49.237 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.p.AuthorisationComplexTypeParser Parsing complexType authorisation for case type 'PRLAPPS', case field 'TTL', complexFieldReference 'OverrideTTL', access profile 'TTL_profile', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeC100', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveLegalRepresentativeFL401', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminAddBarrister', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorAddBarrister', access profile 'hearing-centre-team-leader', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'hearing-centre-team-leader', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorRemoveBarrister', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER1]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER2]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER3]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER4]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100APPLICANTBARRISTER5]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[FL401APPLICANTBARRISTER]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'hearing-centre-team-leader', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'barristerStopRepresenting', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminRemoveBarrister', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenContactPreference', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'legalRepresentation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'consentToTheApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRespondentAoH', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternalFlagUpdates', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternalFlagUpdates', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternalFlagUpdates', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCurrentOrPreviousProceeding', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCurrentOrPreviousProceeding', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCurrentOrPreviousProceeding', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenResponseToAoH', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolLitigationCapacityE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAllegationsOfHarmE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolAttendingTheCourtE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConfirmOrEditContactDetailsE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolConsentingToApplicationE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.247 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolInternationalElementE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolKeepDetailsPrivateE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolMiamE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolCurrentOrPreviousProceedingsE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolResponseToAllegationsOfHarmE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolSubmitE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentD', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ResSolViewResponseDraftDocumentE', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createFlagsForGivenCaseNote', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenLanguageSupportNotes', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100RequestSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.250 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401RequestSupport', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100CreateFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createWaTaskForCtscCaseFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createWaTaskForCtscCaseFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createWaTaskForCtscCaseFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ManageFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100ReviewRARequest', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'closeReviewRARequestTask', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401CreateFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ManageFlags', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ReviewRARequest', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorCreate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attendingTheHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAttendingTheHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'selectApplicationType', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.251 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendSelectApplicationType', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingUrgency', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndApplicants', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendHearingUrgency', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'withoutNoticeOrderDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applicantsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendApplicantsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childDetailsRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildDetailsRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentsDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentsDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ApplicantFamilyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.252 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allegationsOfHarmRevised', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarmRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendAllegationsOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherChildNotInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherPeopleInTheCaseRevised', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherChildNotInTheCase', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internationalElement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenInternationalElement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendInternationalElement', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'otherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.253 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401OtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'litigationCapacity', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendLitigationCapacity', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'welshLanguageRequirements', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWelshLanguageRequirements', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'viewPdfDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-task-list', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-task-list', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageDocumentsNew', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submitAndPay', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'safeguardingAndRiskOfHarm', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCaseNote', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awaitingInformation', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentSuccessCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'issueAndSendToLocalCourtCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'paymentFailureCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentRelationship', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'attachScannedDocs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'handleEvidence', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'handleEvidence', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'caseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AddCaseNumber', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401TypeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-application-tab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-application-tab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401Home', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-confidential-tab', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-confidential-tab', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-all-tabs', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'internal-update-all-tabs', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'WithdrawApplication_Event', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendToGateKeeper', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401SendToGateKeeper', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'resendRpa', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'resendRpa', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendOrReplyToMessages', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendOrReplyToMessages', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'sendOrReplyToMessages', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401StatementOfTruthAndSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401UploadDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'waManageOrders', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.256 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'deleteApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'submit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401resubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'keepYourDetailsPrivate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confirmYourDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingNeeds', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondentMiam', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-case-creation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'courtnav', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'courtnav-document-upload', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenUploadedDocument', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAndSubmit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.257 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'linkCitizenAccount', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-internal-case-update', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'respondent-responded-to-case', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createBundle', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'returnToPreviousState', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-update', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizen-case-submit', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenAwpHwfCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenSaveC100DraftInternal', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenSaveC100DraftInternal', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenSaveC100DraftInternal', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'nocRequest', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'nocRequest', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'nocRequest', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applyNocDecision', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'applyNocDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'updateRepresentation', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'updateRepresentation', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'createCaseLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'maintainCaseLink', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'asyncStitchingComplete', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdDecOutcome', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.258 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcCaseUpdPrepForHearing', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'addCafcassOfficer', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseSubmitWithHWF', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allocatedJudge', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100listWithoutNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenCaseWithdraw', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'listOnNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-privatelaw-cafcass', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'cafcass-document-upload', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'UpdateNextHearingInfo', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewDocuments', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401ListOnNotice', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendTypeOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendWithoutNoticeOrderDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendApplicantFamilyDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentRelationship', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.259 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendRespondentBehaviour', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendOtherProceedings', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401AmendHome', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenRemoveLegalRepresentative', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'c100-all-docs-reviewed', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fl401-all-docs-reviewed', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'statementOfService', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndApplicants', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndRespondents', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndRespondents', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'childrenAndOtherPeople', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendChildrenAndOtherPeople', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'miamPolicyUpgrade', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendMiamPolicyUpgrade', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.260 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hwfProcessCaseUpdate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDraftOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'manageCafcassAccess', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableUpdateHearingActualTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableUpdateHearingActualTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableUpdateHearingActualTask', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableRequestSolicitorOrderTask', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableRequestSolicitorOrderTask', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'enableRequestSolicitorOrderTask', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcHearingCompleted', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcHearingCompleted', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hmcHearingCompleted', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'removeDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reviewAdditionalApplication', access profile 'caseworker-privatelaw-superuser', crud 'CRUD': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'citizenStatementOfService', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'recordFinalDecision', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.261 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-superuser', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editReturnedOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationCaseUpdate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationNotRequiredCaseUpdate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'fm5NotificationNotRequiredCaseUpdate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processUrgentHelpWithFees', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'migrateCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CR': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'migrateCase', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100APPLICANTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER1]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER2]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER3]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER4]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[C100RESPONDENTBARRISTER5]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[FL401APPLICANTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile '[FL401RESPONDENTBARRISTER]', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'draftAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'editAndApproveAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminEditAndApproveAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-systemupdate', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'hearingEditAndApproveAnOrder', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pathfinderDecision', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pcqUpdateForCitizen', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pcqUpdateForCitizen', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'pcqUpdateForCitizen', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.262 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'courtnav', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'reopenClosedCases', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'publicCaseAccess', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'privateCaseAccess', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-la', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'restrictedCaseAccess', access profile 'caseworker-privatelaw-judge', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'changeCaseAccess', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile '[CREATOR]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfApplication', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'confidentialityCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocuments', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'hearing-centre-team-leader', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'serviceOfDocumentsConfCheck', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[CREATOR]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'solicitorStopRepresentingLiP', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.263 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummySolicitorCreateCourtNav', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'hearing-centre-admin', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyAdminCreateNoc', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportPaymentSuccessCallback', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile '[CREATOR]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-solicitor', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'tsDummyPaymentAwP', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListA', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListB', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportRespondentTaskListC', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-courtadmin-casecreator', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportCAUrgentCases', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyCase', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'testingSupportDummyCase', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'amendCourtDetails', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-courtadmin', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'transferToAnotherCourt', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.264 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100APPLICANTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR1]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR2]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR3]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR4]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[C100RESPONDENTSOLICITOR5]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[FL401APPLICANTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile '[FL401RESPONDENTSOLICITOR]', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'uploadAdditionalApplications', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentSuccessCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100APPLICANTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR1]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR2]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR3]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR4]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[C100RESPONDENTSOLICITOR5]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[FL401APPLICANTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile '[FL401RESPONDENTSOLICITOR]', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'awpPaymentFailureCallback', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allAwPInReview', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allAwPInReview', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'allAwPInReview', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'processHwfUpdateAwpStatus', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'citizen', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-courtadmin-casecreator', crud 'CRU': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseEventParser Parsing access profile for case type 'PRLAPPS', event 'adminCreate', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-courtadmin-casecreator', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_SUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'courtnav', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'ctsc-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.267 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_PAID', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'ctsc-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'SUBMITTED_NOT_PAID', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'ctsc-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'hearing-centre-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_ISSUED', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.270 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_RESUBMISSION_TO_HMCTS', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'ctsc-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'CASE_WITHDRAWN', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'hearing-centre-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.272 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'JUDICIAL_REVIEW', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.273 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser No row is defined for case type 'PRLAPPS', state 'DELETED' -2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.273 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'ctsc-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'ALL_FINAL_ORDERS_ISSUED', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'ctsc-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-bulkscan', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-bulkscansystemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'hearing-centre-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.274 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PREPARE_FOR_HEARING_CONDUCT_HEARING', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-solicitor', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'citizen', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-systemupdate', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-courtadmin', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-la', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-judge', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-caa', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-approver', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'ctsc-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-cafcass', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-externaluser-viewonly', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'hearing-centre-team-leader', crud 'CRUD': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-ras-validation', crud 'R': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.275 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'DECISION_OUTCOME', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.276 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser No row is defined for case type 'PRLAPPS', state 'REQUESTED_FOR_DELETION' -2026-02-06T16:25:49.277 WARN [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser No row is defined for case type 'PRLAPPS', state 'READY_FOR_DELETION' -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:49.277 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'PROCEEDS_IN_HERITAGE_SYSTEM', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-systemupdate', crud 'CRU': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-superuser', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-wa-task-configuration', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-solicitor', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'citizen', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'GS_profile', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-courtadmin', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-la', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-judge', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-caa', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-approver', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.AuthorisationCaseStateParser Parsing access profile for case type 'PRLAPPS', state 'AWAITING_INFORMATION', access profile 'caseworker-privatelaw-readonly', crud 'R': OK -2026-02-06T16:25:49.278 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeParser Case types parsing: Parsing case type PRLAPPS: OK -2026-02-06T16:26:01.667 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Case types parsing: OK: 1 case types parsed -2026-02-06T16:26:01.667 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: Case types: OK: 1 case types imported -2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchInputLayoutParser Layout parsing: Case type PRLAPPS: OK -2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchInputLayoutParser Layout parsing: OK -2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchResultLayoutParser Layout parsing: Case type PRLAPPS: OK -2026-02-06T16:26:01.674 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.SearchResultLayoutParser Layout parsing: OK -2026-02-06T16:26:01.676 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.WorkbasketInputLayoutParser Layout parsing: Case type PRLAPPS: OK -2026-02-06T16:26:01.676 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.WorkbasketInputLayoutParser Layout parsing: OK -2026-02-06T16:26:01.677 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.WorkbasketLayoutParser Layout parsing: Case type PRLAPPS: OK -2026-02-06T16:26:01.677 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.excel.parser.WorkbasketLayoutParser Layout parsing: OK -2026-02-06T16:26:09.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.SearchCasesResultLayoutParser Layout parsing: Case type PRLAPPS: OK -2026-02-06T16:26:09.202 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.parser.SearchCasesResultLayoutParser Layout parsing: OK -2026-02-06T16:26:09.241 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Orders: OK -2026-02-06T16:26:09.241 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group caseLinksTab: OK -2026-02-06T16:26:09.242 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ServiceOfApplication: OK -2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group documents: OK -2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group OtherApplicationsTab: OK -2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasks: OK -2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group History: OK -2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group caseFileView: OK -2026-02-06T16:26:09.244 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group CasePaymentHistory: OK -2026-02-06T16:26:09.245 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Parties: OK -2026-02-06T16:26:09.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group FL401Parties: OK -2026-02-06T16:26:09.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group BundleInformation: OK -2026-02-06T16:26:09.246 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksA: OK -2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group FL401ApplicationDetails: OK -2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksC: OK -2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksB: OK -2026-02-06T16:26:09.248 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksE: OK -2026-02-06T16:26:09.249 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group RespondentTasksD: OK -2026-02-06T16:26:09.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ApplicationDetails: OK -2026-02-06T16:26:09.254 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Messages: OK -2026-02-06T16:26:09.255 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Tasks: OK -2026-02-06T16:26:09.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group laCaseFlagsViewTab: OK -2026-02-06T16:26:09.265 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ApplicationPaymentLink: OK -2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group CATasks: OK -2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ServiceOfDocuments: OK -2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group paymentSummary: OK -2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group addCaseNote: OK -2026-02-06T16:26:09.266 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group DraftOrders: OK -2026-02-06T16:26:09.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group Summary: OK -2026-02-06T16:26:09.268 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group ServiceRequestTab: OK -2026-02-06T16:26:09.269 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group quarantine: OK -2026-02-06T16:26:09.271 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group confidentialDetails: OK -2026-02-06T16:26:09.276 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group support: OK -2026-02-06T16:26:09.285 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group judgesCaseFlagsViewTab: OK -2026-02-06T16:26:09.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: Group caCaseFlagsViewTab: OK -2026-02-06T16:26:09.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: Case displayGroupType PRLAPPS: OK -2026-02-06T16:26:09.293 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.CaseTypeTabParser Display group parsing: OK -2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementD1: OK -2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB1: OK -2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB3: OK -2026-02-06T16:26:09.306 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateB1: OK -2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB2: OK -2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateB3: OK -2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateB4: OK -2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails2: OK -2026-02-06T16:26:09.307 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA8: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders1: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails3: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA7: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails1: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA9: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA4: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA3: OK -2026-02-06T16:26:09.308 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA6: OK -2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA5: OK -2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders9: OK -2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders8: OK -2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders7: OK -2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocumentsConfCheck1: OK -2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders6: OK -2026-02-06T16:26:09.309 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationA1: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders5: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders4: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders3: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders2: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group returnApplication2: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group returnApplication1: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group issueAndSendToLocalCourtCallback1: OK -2026-02-06T16:26:09.310 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementC1: OK -2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC2: OK -2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC1: OK -2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC4: OK -2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC3: OK -2026-02-06T16:26:09.311 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateA1: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateA3: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateA4: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB9: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB8: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB5: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB4: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB7: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentRelationship2: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB6: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentRelationship1: OK -2026-02-06T16:26:09.312 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizenLanguageSupportNotes1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam9: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam8: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group privateCaseAccess1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group privateCaseAccess2: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummySolicitorCreate2: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingUrgency1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorAddBarrister1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsA1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendApplicantFamilyDetails1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group courtnav-document-upload1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateD1: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummySolicitorCreate3: OK -2026-02-06T16:26:09.313 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateD3: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateD4: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam9: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam7: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam8: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ReviewRARequest1: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam1: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm4: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm3: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders8: OK -2026-02-06T16:26:09.314 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam3: OK -2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm2: OK -2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders9: OK -2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam2: OK -2026-02-06T16:26:09.315 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarm1: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders6: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportCAUrgentCases2: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam5: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders7: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam4: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group awpPaymentSuccessCallback1: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders4: OK -2026-02-06T16:26:09.316 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam7: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders5: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportCAUrgentCases3: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miam6: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders2: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType3: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders3: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType2: OK -2026-02-06T16:26:09.317 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders1: OK -2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType4: OK -2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementE1: OK -2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group selectApplicationType1: OK -2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateC1: OK -2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA2: OK -2026-02-06T16:26:09.318 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA1: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateC3: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateC4: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group withoutNoticeOrderDetails4: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails3: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails4: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails1: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWithoutNoticeOrderDetails2: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders20: OK -2026-02-06T16:26:09.319 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders21: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders24: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders25: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders22: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders23: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders28: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate5: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationE1: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate4: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityA1: OK -2026-02-06T16:26:09.320 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders26: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders27: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate6: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processHwfUpdateAwpStatus1: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group tsDummyPaymentAwP1: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate3: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorCreate2: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group WithdrawApplication_Event1: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam5: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam6: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam3: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders30: OK -2026-02-06T16:26:09.321 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam4: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadDocuments1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiam2: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityB1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childrenAndRespondents1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createBundle1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationD1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ListOnNotice1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group attachScannedDocs2: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ListOnNotice2: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group attachScannedDocs1: OK -2026-02-06T16:26:09.322 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfApplication2: OK -2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder9: OK -2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfApplication4: OK -2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType4: OK -2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType3: OK -2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType2: OK -2026-02-06T16:26:09.323 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendSelectApplicationType1: OK -2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder2: OK -2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processUrgentHelpWithFees1: OK -2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder5: OK -2026-02-06T16:26:09.324 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder6: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationC1: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processUrgentHelpWithFees3: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder7: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group cafcass-document-upload1: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group processUrgentHelpWithFees2: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder8: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised10: OK -2026-02-06T16:26:09.325 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised11: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications4: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications3: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications2: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group uploadAdditionalApplications1: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder1: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder2: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder3: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders10: OK -2026-02-06T16:26:09.326 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders13: OK -2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders14: OK -2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders11: OK -2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders12: OK -2026-02-06T16:26:09.327 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders17: OK -2026-02-06T16:26:09.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders18: OK -2026-02-06T16:26:09.328 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders15: OK -2026-02-06T16:26:09.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders16: OK -2026-02-06T16:26:09.330 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConsentingToApplicationB1: OK -2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group waManageOrders19: OK -2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentRelationship2: OK -2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocumentsNew1: OK -2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade1: OK -2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmA1: OK -2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentRelationship1: OK -2026-02-06T16:26:09.331 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB11: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetails1: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityE1: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetails2: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmB10: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentBehaviour1: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade6: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade7: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade8: OK -2026-02-06T16:26:09.332 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade2: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherProceedings1: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade3: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitA1: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade4: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitA2: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group miamPolicyUpgrade5: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmB1: OK -2026-02-06T16:26:09.333 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group attendingTheHearing1: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group maintainCaseLinkmaintainCaseLink: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDocuments1: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDocuments2: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder12: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder13: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder10: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmC1: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder11: OK -2026-02-06T16:26:09.334 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtA1: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtA2: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401UploadDocuments1: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC10: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC11: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummyAdminCreateNoc3: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group testingSupportDummyAdminCreateNoc2: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetails2: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityC1: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetails1: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmD1: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorRemoveBarrister1: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtB2: OK -2026-02-06T16:26:09.335 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group restrictedCaseAccess1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group restrictedCaseAccess2: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtB1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolLitigationCapacityD1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDraftOrder1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group removeDraftOrder2: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildrenAndApplicants1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolResponseToAllegationsOfHarmE1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group viewPdfDocument1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder21: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtC1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AddCaseNumber1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group keepYourDetailsPrivate1: OK -2026-02-06T16:26:09.336 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtC2: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder1: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group recordFinalDecision2: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD10: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group recordFinalDecision1: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group publicCaseAccess1: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD11: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group publicCaseAccess2: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocuments2: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocuments3: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitE1: OK -2026-02-06T16:26:09.337 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group serviceOfDocuments1: OK -2026-02-06T16:26:09.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitE2: OK -2026-02-06T16:26:09.338 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group litigationCapacity1: OK -2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder17: OK -2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder16: OK -2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder15: OK -2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetailsRevised1: OK -2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder14: OK -2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildDetailsRevised2: OK -2026-02-06T16:26:09.340 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder13: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder11: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder10: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateE1: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateE3: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolKeepDetailsPrivateE4: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtD2: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizen-case-update1: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtD1: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizen-case-update4: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages3: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages2: OK -2026-02-06T16:26:09.341 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder2: OK -2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages5: OK -2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder5: OK -2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages4: OK -2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder4: OK -2026-02-06T16:26:09.342 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder7: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder6: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendOrReplyToMessages1: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder9: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder8: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childrenAndApplicants1: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editAndApproveAnOrder20: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder20: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitD1: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitD2: OK -2026-02-06T16:26:09.343 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder22: OK -2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder21: OK -2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder23: OK -2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised9: OK -2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised8: OK -2026-02-06T16:26:09.344 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised3: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised2: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised1: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised7: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised6: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtE1: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendOtherProceedings1: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised5: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAttendingTheCourtE2: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised4: OK -2026-02-06T16:26:09.345 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewDocuments2: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised4: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised3: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE10: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childrenAndOtherPeople1: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised6: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewDocuments1: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE11: OK -2026-02-06T16:26:09.346 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised5: OK -2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised2: OK -2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm4: OK -2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401OtherProceedings1: OK -2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised1: OK -2026-02-06T16:26:09.347 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade8: OK -2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm2: OK -2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade7: OK -2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm3: OK -2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarm1: OK -2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitC1: OK -2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade4: OK -2026-02-06T16:26:09.348 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised8: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitC2: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade3: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised7: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade6: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendTypeOfApplication2: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade5: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendTypeOfApplication1: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAllegationsOfHarmRevised9: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade2: OK -2026-02-06T16:26:09.349 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendMiamPolicyUpgrade1: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group transferToAnotherCourt1: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamE1: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamE2: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createCaseLinkcreateCaseLink: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitB1: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolSubmitB2: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submitAndPay2: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submitAndPay1: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submitAndPay3: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamD2: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamD1: OK -2026-02-06T16:26:09.350 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401resubmit1: OK -2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ManageSupport1: OK -2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentB1: OK -2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401resubmit2: OK -2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminAddBarrister1: OK -2026-02-06T16:26:09.351 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate2: OK -2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createFlagsForGivenCaseNote1: OK -2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamC1: OK -2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamC2: OK -2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hmcCaseUpdDecOutcome1: OK -2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate3: OK -2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate4: OK -2026-02-06T16:26:09.352 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate5: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminCreate6: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group enableUpdateHearingActualTask1: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentA1: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group createWaTaskForCtscCaseFlags1: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsA1: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders11: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder15: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherChildNotInTheCase1: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders12: OK -2026-02-06T16:26:09.353 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder14: OK -2026-02-06T16:26:09.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder17: OK -2026-02-06T16:26:09.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsC1: OK -2026-02-06T16:26:09.355 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders10: OK -2026-02-06T16:26:09.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder16: OK -2026-02-06T16:26:09.356 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders15: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders16: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders13: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders14: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamB1: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamB2: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reopenClosedCases1: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentD1: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendCourtDetails1: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizenRemoveLegalRepresentative1: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherPeopleInTheCaseRevised1: OK -2026-02-06T16:26:09.358 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group applicantsDetails1: OK -2026-02-06T16:26:09.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group applicantsDetails2: OK -2026-02-06T16:26:09.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders19: OK -2026-02-06T16:26:09.359 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders17: OK -2026-02-06T16:26:09.360 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders18: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsB1: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder11: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder10: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder13: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders22: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder15: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder5: OK -2026-02-06T16:26:09.361 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders23: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder16: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder4: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsD1: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders20: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder13: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder7: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders21: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder14: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder6: OK -2026-02-06T16:26:09.362 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group sendToGateKeeper1: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders26: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder11: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder1: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders27: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders24: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder3: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders25: OK -2026-02-06T16:26:09.363 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder10: OK -2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder2: OK -2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamA1: OK -2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolMiamA2: OK -2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder9: OK -2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group caseNumber1: OK -2026-02-06T16:26:09.364 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder8: OK -2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder17: OK -2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherProceedings1: OK -2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentC1: OK -2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders28: OK -2026-02-06T16:26:09.366 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendInternationalElement1: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder22: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder23: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder20: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminEditAndApproveAnOrder21: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageOrders30: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group barristerStopRepresenting1: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group welshLanguageRequirements1: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group addCafcassOfficer1: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments2: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments1: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ApplicantFamilyDetails1: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100listWithoutNotice1: OK -2026-02-06T16:26:09.367 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group awaitingInformation1: OK -2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100RequestSupport1: OK -2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group otherPeopleInTheCase1: OK -2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hmcCaseUpdPrepForHearing1: OK -2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ManageSupport1: OK -2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolViewResponseDraftDocumentE1: OK -2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendLitigationCapacity1: OK -2026-02-06T16:26:09.368 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA10: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmA11: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group citizenAwpCreate1: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group deleteApplication1: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group confidentialityCheck1: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments4: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageDocuments3: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401SendToGateKeeper1: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorStopRepresentingLiP2: OK -2026-02-06T16:26:09.369 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group enableRequestSolicitorOrderTask1: OK -2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group solicitorStopRepresentingLiP1: OK -2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder8: OK -2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder7: OK -2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder6: OK -2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder5: OK -2026-02-06T16:26:09.370 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder9: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder4: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder2: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group hearingEditAndApproveAnOrder1: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder5: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401Home1: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder6: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder7: OK -2026-02-06T16:26:09.371 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminRemoveLegalRepresentativeFL4011: OK -2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder8: OK -2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group editReturnedOrder9: OK -2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group handleEvidence1: OK -2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildrenAndOtherPeople1: OK -2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminRemoveLegalRepresentativeC1001: OK -2026-02-06T16:26:09.372 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendHearingUrgency1: OK -2026-02-06T16:26:09.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ManageFlags1: OK -2026-02-06T16:26:09.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group manageCafcassAccess1: OK -2026-02-06T16:26:09.373 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder10: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100CreateFlags1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401TypeOfApplication1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401TypeOfApplication2: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listOnNotice3: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allocatedJudge1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentsDetails1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentsDetails2: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listWithoutNotice1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listOnNotice1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherPeopleInTheCase1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group listOnNotice2: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group addCaseNote1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group pathfinderDecision1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group statementOfService1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401AmendHome1: OK -2026-02-06T16:26:09.374 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder20: OK -2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group safeguardingAndRiskOfHarm1: OK -2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherPeopleInTheCaseRevised1: OK -2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group safeguardingAndRiskOfHarm2: OK -2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group safeguardingAndRiskOfHarm3: OK -2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group internationalElement1: OK -2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder11: OK -2026-02-06T16:26:09.375 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder12: OK -2026-02-06T16:26:09.376 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetailsRevised2: OK -2026-02-06T16:26:09.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder13: OK -2026-02-06T16:26:09.377 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder14: OK -2026-02-06T16:26:09.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder15: OK -2026-02-06T16:26:09.378 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder16: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group draftAnOrder17: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group childDetailsRevised1: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group adminRemoveBarrister1: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolConfirmOrEditContactDetailsE1: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsC1: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendChildrenAndRespondents1: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendOtherChildNotInTheCase1: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE8: OK -2026-02-06T16:26:09.379 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE7: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401ManageFlags1: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE9: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised10: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsB1: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ReviewRARequest1: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submit2: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group submit1: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementB1: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401RequestSupport1: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group returnToPreviousState1: OK -2026-02-06T16:26:09.380 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD3: OK -2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD2: OK -2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendApplicantsDetails1: OK -2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD5: OK -2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsE1: OK -2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD4: OK -2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD1: OK -2026-02-06T16:26:09.381 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendRespondentBehaviour1: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC9: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC6: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401CreateFlags1: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC5: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC8: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendApplicantsDetails2: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmC7: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group allegationsOfHarmRevised11: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolInternationalElementA1: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401StatementOfTruthAndSubmit3: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentsDetails2: OK -2026-02-06T16:26:09.382 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group respondentsDetails1: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendAttendingTheHearing1: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE4: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE3: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolCurrentOrPreviousProceedingsD1: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE6: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401StatementOfTruthAndSubmit1: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE5: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group fl401StatementOfTruthAndSubmit2: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewAdditionalApplication1: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewAdditionalApplication2: OK -2026-02-06T16:26:09.383 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group reviewAdditionalApplication3: OK -2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE2: OK -2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmE1: OK -2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD7: OK -2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD6: OK -2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD9: OK -2026-02-06T16:26:09.384 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group c100ResSolAllegationsOfHarmD8: OK -2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group amendWelshLanguageRequirements1: OK -2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: Group nocRequestSingleFormPageWithComplex: OK -2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: Case displayGroupType PRLAPPS: OK -2026-02-06T16:26:09.385 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.parser.WizardPageParser Display group parsing: OK -2026-02-06T16:26:17.829 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: UI definition: OK -2026-02-06T16:26:17.943 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.s.d.s.w.WorkBasketUserDefaultService Updating user profile- URL http://localhost:4453/user-profile/users -2026-02-06T16:26:18.136 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: User profiles: OK -2026-02-06T16:26:18.137 INFO [*** ccdDefinitionStoreApi] u.g.h.c.d.store.excel.service.ImportServiceImpl Importing spreadsheet: OK: For jurisdiction PRIVATELAW -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: orders belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: preliminaryDocuments belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: preliminaryDocuments belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applications belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. -2026-02-06T16:26:19.246 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applicantDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: applications belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: respondentDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: witnessStatementAndEvidence belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: witnessStatementAndEvidence belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: witnessStatementAndEvidence belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: CAFCASSReportAndGuardian belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: localAuthorityDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: localAuthorityDocuments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: expertReport belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: correspondentToAndFromCourt belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. -2026-02-06T16:26:19.247 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: otherDocments belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: attendingTheHearing belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: attendingTheHearing belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: attendingTheHearing belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: confidential belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. -2026-02-06T16:26:19.248 ERROR [*** ccdDefinitionStoreApi] u.g.h.c.d.s.e.e.exception.InvalidImportException Categories tab Invalid ParentCategoryID: quarantine belongs to a different case type. -2026-02-06T16:26:19.878 WARN [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.AsynchronousElasticDefinitionImportListener Errors initialising ElasticSearch will not fail the definition import -2026-02-06T16:26:19.892 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient alias prlapps_cases exists: true -2026-02-06T16:26:19.892 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator creating mapping for case type: PRLAPPS -2026-02-06T16:26:19.894 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator generating case properties mapping -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reference, mapping: {"type" : "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}},"analyzer": "standard", "search_analyzer": "case_id_analyzer"} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdiction, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: id, mapping: {"type" : "long"} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: state, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: created_date, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: last_modified, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: security_classification, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: case_type_id, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: last_state_modified_date, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: @timestamp, mapping: {"enabled": false} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: @version, mapping: {"enabled": false} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: index_id, mapping: {"enabled": false} -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator generating case data mapping -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteHeaderCaseName of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteLink of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepHeader of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepInfo of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmHint of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabelDetail of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbductionLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field othersConcernsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmChildContactLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudeLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeInfo of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ApplicationPaymentLinkLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabCaseNameLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabHearingUrgencyLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabApplicantDetailsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabRespondentDetailsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabDeclarationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildRevisedLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabTypeOfApplicationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmRevisedLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabMiamLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherProceedingsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabInternationalElementLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAttendingTheHearingLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLitigationCapacityLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabWelshLanguageRequirementsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmDetailsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleInTheCaseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleRevisedInTheCaseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherChildNotInTheCaseLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndApplicantsRelationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndRespondentRelationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndOtherPeopleRelationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantFamilyTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childInfoTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childToBeProtectedTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401SolicitorLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field homeDetailsTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentBehaviourTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withoutNoticeOrderTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field relationshipToRespondentTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ChildDetailsTableLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fL401ApplicationTabDeclarationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesDetails of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherExternal of type FlagLauncher ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherInternal of type FlagLauncher ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createBundleSubmitLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNext of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNextLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListReturnLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseHistory of type CaseHistoryViewer ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelPleaseUploadDocuments of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelDocumentsRequired of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelContactOrResidenceOrder of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelC8FormForConfidentiality of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelUploadOtherDocuments of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelLanguageRequirements of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAccessibility of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAdjustmentsRequired of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangements of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsDescription of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsRequired of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelIntermediaryDescription of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraConsentOrderNotification of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field natureOfOrderLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication2 of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraApplicationDetails of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbduction of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbuse of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelWhereChildrenLive of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildren of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildrenAdditionalQuestions of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherCourtCases of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheApplicants of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheRespondents of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOthersToNotify of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherChildren of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantAttendedMIAMLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field claimingExemptionMIAMLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field familyMediatorMIAMLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsSelectAll of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceSelectAll of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamChildProtectionConcernLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonSelectAll of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPreviousAttendanceLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamOtherGroundsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel1 of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage1 of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesNotAvailable of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseTypeOfApplicationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ConfidentialityDisclaimerLabel1 of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ConfidentialityDisclaimerLabel1 of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100SelectFamilyCourtLabel1 of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsAdditionalQuestionsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmHint of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabelDetail of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmOtherConcernsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmChildContactLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadApplicationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadApplicationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100draftOrderDocLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401draftOrderDocLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDeclaration of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeStmtLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeSignStmtLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPage of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPageDesc of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayFee of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplication of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplicationLinkLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100submitAndPayDownloadApplicationLinkLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPDFlinkLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceRequest of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field rejectReasonLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationLabel of type Label ignored -2026-02-06T16:26:19.895 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationText of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnMessageLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field localCourtHint of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo1 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo2 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo3 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo4 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo5 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo6 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo7 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo8 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hearingUrgencyLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitCountyCourtSelectionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadC2Link of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalApplicationFeesToPayText of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field componentLauncher of type ComponentLauncher ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseLinksTabTitle of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field LinkedCasesComponentLauncher of type ComponentLauncher ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsSubLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsSubLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsSubLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field recordChildrenLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDecisionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field finalOutComeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityCheckWarningText of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCourtWarning of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field deleteApplicationNote of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43Label of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43LabelBold of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCafcassOrCafcassCymruLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueCymruLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDirectionsCaseNeedsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioListLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferApplicationLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingsAndNextStepsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCaseReviewLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDecisionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocateNamedJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingPermissionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingPlaceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentBecauseLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentTimeShortenedLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedCourtLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeFirstHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeApprovedApplicationLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeNotApprovedLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraHearingDisputeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParticipationDirectionsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAttendanceAtMiamLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtToInterpretersLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUpdateContactDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationMagistrateLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDistJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationCircuitJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocatedToJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioReservedToJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFirstHearingUrgencyDetailLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedAnotherReasonLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeAnotherReasonLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedReasonLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementOtherCheckDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioMiamOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioInterpreterOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferCourtDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLetterLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioOtherLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOfPapersLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParentWithCareLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioApplicationToApplyPermissionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPreamblesLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioRightToAskCourtLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPartiesRaisedAbuseLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassOrCafcassCymruLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsCymruLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerCymruLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSectionReportOrChildImpactLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7FactsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7daOccuredLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartyToProvideDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNewPartnersToCafcassLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7CheckLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsCaseNeedsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCourtLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferApplicationLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationProhibitionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx740Label of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationQualifiedLegalLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferCourtDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationCourtCheckLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx741Label of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDocumentationAndEvidenceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpecifiedDocumentsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsFilingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpipAttendanceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDisclosureLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromGpLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsCheckLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoApplicantNameLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRespondentNameLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDiscDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPApplicantNameLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPRespondentNameLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromDiscGpLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSApplicantNameLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSRespondentNameLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolCheckLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsCheckLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisClosureProceedingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingsAndNextStepsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDecisionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingPlaceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamAttendanceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPermissionHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForDraLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSettlementConferenceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoArrangeInterpretersLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUpdateContactDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterSecondGKLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingNotNeededLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParticipationDirectionsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsForRHLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingUrgentBecauseLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraHearingDisputeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDistJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationCircuitJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationMagistratesLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoReservedToLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocatedToLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementOtherCheckDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingOtherCheckLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInterpreterOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassFileAndServeDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field safeguardingCafcassCymruDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocateOrReserveJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterGatekeepingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel2 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLetterLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoOtherLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisclosureOfPapersLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParentWithCareLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAdditionalDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoListLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPreamblesLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRightToAskCourtLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartiesRaisedAbuseLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAfterSecondGatekeepingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAddNewPreambleLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingHintText of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field previewDraftOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field instructionsToLegalRepresentativeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field yourInstructionsToLrLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openOrderAndReviewContentLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAmendedOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendedOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field blankOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404OccupationLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404nonMolestationLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field editOrderTextInstructionsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel1 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401OnNoticeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401WithOutNoticeReasonToRespondentLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withOutNoticeReasonToShareApplicantLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401RejectListWithoutNoticeHearingRequestLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeHearingInstructionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentsDetails of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessDuplicate of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitness of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentSupport of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field beforeYouStart of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field updatePayBubble of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field approveDeliveryManagerOrSeniorManager of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field Checkthehelpwithfeesapplication of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationHelpwithfeesreferenceApplicantApplication of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field listWithoutNoticeHearingInstructionLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field furtherEvidenceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field correspondenceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherDocumentsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText2 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field typeOfC21OrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21HearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder13 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel1 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel2 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21SolicitorLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addOrderDetailsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder3 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel11 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder7 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassOfficeName of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassCymruOfficeName of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel12 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createAnOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseDoableActions of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderMadeByLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field judgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCase of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrder of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkOrderRestrictionsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderRecipientsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSummaryLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSolicitorLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder1 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder5 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel2 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel3 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel4 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel5 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel7 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel6 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel8 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel9 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel10 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel13 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel14 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel19 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderHeaderLabel1 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderCheckOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder10 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel1 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel12 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsManageOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field appointedGuardianLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel20 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whenToServeOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameEditScreenLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel7 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel8 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel9 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel10 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel11 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel13 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSolicitorLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSummaryLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameDirectionsToAdminLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameInstructionsFromJudgeLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadHintLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder4 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingRequiredLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createOneHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingOptionalLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createMultipleHearingLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel19 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingRequiredLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingOptionalLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingRequiredLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingOptionalLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel15 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder2 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderDownloadOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersDocumentToAmendLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderReplaceOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersAmendedOrderLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field managerCheckAmendOrder of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel21 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveOrderAdditionalDocumentsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel22 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAdminText of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtBailiffText of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel23 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel24 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAnOrder of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messagesLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendOrReplyEventLink of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openMessageLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closedMessageLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPolicyUpgradeExemptionsLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel1 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field mpuAddEvidenceLabel of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo9 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel5 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel2 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel3 of type Label ignored -2026-02-06T16:26:19.896 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel4 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabApplicantsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildrenLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabRespondentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndRespondentPartiesLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesRevisedLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildNotInThePartiesLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndApplicantPartiesLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndRespondentPartiesLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndOtherPeoplePartiesLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field PaymentHistory of type CasePaymentHistoryViewer ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeOrderNameLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheRemoveOrderLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field currentStatusLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherStatusMsg of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohHint of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabelDetail of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbductionLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respOthersConcernsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAllegationsOfHarmChildContactLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseDescLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseDescLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbductionLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentOtherConcernsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAttendingTheCourtDaActLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseProvisionLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummaryHeading of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummary of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtActionHeading of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAction of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateNoHeading of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field noNeedOfPrivateDetailsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whatIsMiamLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpMiamCostsExemptionsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field responseToAllegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel1 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel2 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel3 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel4 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel5 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel6 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel7 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel8 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel9 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel10 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ResSolSubmitAndPayAgreeSignStmtLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolSuccessLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseStateLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseCourtLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseDownloadLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelA of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelB of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelC of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelD of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelE of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPdfResponseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7Response of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7ResponseLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateDisclaimer of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateReasonLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToPrivateTabLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicDisclaimer of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicReasonLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedDisclaimer of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedReasonLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToRestrictTabLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field assignedUserDetailsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnToPreviousStateLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel1 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel2 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel3 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel4 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field docToBeReviewedLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field showLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field externalMessagesHint of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesHint of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel2 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field letGateKeepersKnowLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendToGateKeeperHint of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectOrdersLabel1 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sentDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveTheseOrdersLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field automaticDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pd36qLetterLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangementsLetterLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field headerLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaHeaderLabel22 of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialDetailsArePresentBanner of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDocumentsForLaLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextCA of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextDA of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaCheckRestrictionsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaConfirmRecipientsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaOrderSentToSolicitorLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfApplicationLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedPackLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedPackLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialCheckFailedLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodSelectDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodAdditionalDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsConfCheckWarningText of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedDocumentsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ServiceRequest of type WaysToPay ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepWarningText of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepHeader of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceAddRecipientLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field summaryLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pathfinderLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field refugeLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseStatusLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityDetailsLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field urgencyLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTypeLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangmentLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderAppliedForLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabelForSummaryTab of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dateOfSubmissionLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field cafcassOfficerLabel of type Label ignored -2026-02-06T16:26:19.897 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndCafcassOfficers, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerPosition":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerOtherPosition":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerEmailAddress":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"cafcassOfficerPhoneNo":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: testCaseName, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteHeaderCaseNameText, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: subject, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNote, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNotes, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeLegalRepAndPartiesList, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestraining, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctive, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewDomesticBehavioursLabel of type Label ignored -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticBehaviours, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: allChildrenAreRisk, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whichChildrenAreRisk, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseBehavioursDocmosis, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false}}}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuses, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildAbductionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreats, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildrenLocationNow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionChildHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildOtherContact, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPhysicalAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPsychologicalAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childSexualAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childEmotionalAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childFinancialAbuse, mapping: {"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificJudgeOrLegalAdviserNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviser, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNameAndEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdviserList, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudiciary, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingUrgencyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: declarationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401TypeOfApplicationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOverviewTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOverviewTable, mapping: {"properties":{"newAllegationsOfHarmYesNo":{"enabled": false},"newAllegationsOfHarmDomesticAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbductionYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseDetails":{"enabled": false},"newAllegationsOfHarmOtherConcerns":{"enabled": false},"newAllegationsOfHarmOtherConcernsDetails":{"enabled": false}}} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeExemptionsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearingTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOrdersTable, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersNonMolestation, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nonMolestationOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOccupation, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: occupationOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: forcedMarriageProtectionOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersRestraining, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: restrainingOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.898 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOtherInjunctive, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherInjunctiveOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: undertakingInPlaceOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOrdersTable, mapping: {"properties":{"newOrdersNonMolestation":{"enabled": false},"nonMolestationOrder":{"enabled": false},"newOrdersOccupation":{"enabled": false},"occupationOrder":{"enabled": false},"newOrdersForcedMarriageProtection":{"enabled": false},"forcedMarriageProtectionOrder":{"enabled": false},"newOrdersRestraining":{"enabled": false},"restrainingOrder":{"enabled": false},"newOrdersOtherInjunctive":{"enabled": false},"otherInjunctiveOrder":{"enabled": false},"newOrdersUndertakingInPlace":{"enabled": false},"undertakingInPlaceOrder":{"enabled": false}}} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildAbductionReasons, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreats, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildrenLocationNow, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionChildHasPassport, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildAbductionTable, mapping: {"properties":{"newChildAbductionReasons":{"enabled": false},"newPreviousAbductionThreats":{"enabled": false},"newPreviousAbductionThreatsDetails":{"enabled": false},"newChildrenLocationNow":{"enabled": false},"newAbductionPassportOfficeNotified":{"enabled": false},"newAbductionPreviousPoliceInvolvement":{"enabled": false},"newAbductionPreviousPoliceInvolvementDetails":{"enabled": false},"newAbductionChildHasPassport":{"enabled": false},"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false}}} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOtherConcernsTable, mapping: {"properties":{"newAllegationsOfHarmOtherConcernsCourtActions":{"enabled": false}}} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildOtherContact, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildContactTable, mapping: {"properties":{"newAgreeChildUnsupervisedTime":{"enabled": false},"newAgreeChildSupervisedTime":{"enabled": false},"newAgreeChildOtherContact":{"enabled": false}}} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseRevisedTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildNotInTheCaseTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantsRelationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelationsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelationsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedExtraTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsExtraTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childInfoTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childToBeProtectedTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ApplicantTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401SolicitorDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withoutNoticeOrderTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RespondentTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: relationshipToRespondentTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingsDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHomeEntered, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedDATable, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: allChildrenAreRisk, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whichChildrenAreRisk, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedCATable, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awaitingInformationReasonList, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenAwpPayments, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplicationsFlag, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyList, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedBarrister, mapping: {"properties":{"partyList":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerOrg":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorFullName":{"enabled": false}}} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPageAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPagePartyName, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanCaseReference, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: scannedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: evidenceHandled, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanEnvelopes, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConfidentiality, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildInternationalElements, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReasonableAdjustments, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildTypeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingWithoutNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReturnUrl, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildMaim, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDocumentsCopy, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingUrgency, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildApplicantDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildRespondentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherChildrenDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherPersonsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantConsentMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist1, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist1, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentReferenceNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildSafetyConcerns, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildScreeningQuestions, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHelpWithFeesDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConsentOrderDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildStatementOfTruth, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildPostCode, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFeesReferenceNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noOfDaysRemainingToSubmitCase, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantPcqId, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8Document, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8DraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassDateTime, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.899 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseFlagsTaskCreated, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReviewLangAndSmReq, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isReviewLangAndSmReqReviewed, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createBundleTransitionDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bundleInformation, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtSeal, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskList, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListReturn, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: contactOrderDocumentsUploaded, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8FormDocumentsUploaded, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsUploaded, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshNeeded, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whoNeedsWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: spokenOrWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fl401SpokenOrWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshNeeds, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whoNeedsWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: spokenOrWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fl401SpokenOrWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WelshNeeds, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInterpreterNeeded, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field nameLabel of type Label ignored -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewInterpreterNeedLabel of type Label ignored -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: party, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: name, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: language, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherAssistance, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: interpreterNeeds, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"party":{"enabled": false},"name":{"enabled": false},"language":{"enabled": false},"otherAssistance":{"enabled": false}}}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDisabilityPresent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: adjustmentsRequired, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecialArrangementsRequired, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsRequired, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isIntermediaryNeeded, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForIntermediary, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersApplyingFor, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfChildArrangementsOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: natureOfOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequired, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequiredReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbduction, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safetyWelfareConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbduction, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductedBefore, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasMultiplePassports, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossession, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossessionOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolved, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolvedDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbductionReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childWhereabouts, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexually, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyStartDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysically, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyStartDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinancially, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyStartDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomestic, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticStartDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseStartDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseOngoing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseHelpSought, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossessionOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportDetails, mapping: {"properties":{"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false},"newChildPassportPossessionOtherDetails":{"enabled": false}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderAppliedFor, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicantsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherRespondentsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLiveWith, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: personWhoLivesWithChild, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentalResponsibilityDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isFinalOrderIssued, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: children, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenKnownToAuthority, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndLocalAuthority, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenUnderChildProtection, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenWithSameParents, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentsAndTheirChildren, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentalResponsibilities, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoChildrenLiveWith, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAddressAndAdultsLivingWith, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isExistingProceedings, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenInProceeding, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousOrOngoingProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: caseNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateStarted, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateEnded, mapping: {"enabled": false} -2026-02-06T16:26:19.900 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherTypeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfChildrenInvolved, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfGuardian, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameAndOffice, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadRelevantOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousOrOngoingProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: caseNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateStarted, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateEnded, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherTypeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfChildrenInvolved, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameOfGuardian, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nameAndOffice, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadRelevantOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedingsWithDoc, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicants, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplication, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsFL401, mapping: {"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentsFL401, mapping: {"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.901 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: othersToNotify, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartyInTheCaseRevised, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorPartyId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderAppliedFor, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicantsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherRespondentsRelationshipToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLiveWith, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: personWhoLivesWithChild, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentalResponsibilityDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isFinalOrderIssued, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildren, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAttendedMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: claimingExemptionMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDomesticViolenceChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamChildProtectionConcernList, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamUrgencyReasonChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload1, mapping: {"enabled": false} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: consentOrder, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftConsentOrderFile, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseUrgent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseUrgencyTimeAndReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: effortsMadeWithRespondents, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouNeedAWithoutNoticeHearing, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForApplicationWithoutNotice, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouRequireAHearingWithReducedNotice, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: setOutReasonsBelow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: areRespondentsAwareOfProceedings, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantCaseName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrRespondentCaseName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CaseAccessCategory, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFromCourtNav, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedCaseTypeID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTypeOfApplication, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: state, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityStatementDisclaimer, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100ConfidentialityStatementDisclaimer, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityFactors, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityReferrals, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactors, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactorsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherState, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssue, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthority, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherStateGiveReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssueGiveReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthorityGiveReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplication, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: languageRequirementApplicationNeedWelsh, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplicationNeedEnglish, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthority, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthorityTextArea, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenSubjectOfChildProtectionPlan, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: physicalAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emotionalAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: psychologicalAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sexualAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: financialAbuseVictim, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreats, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreatsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenLocationNow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPassportOfficeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosession, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.902 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosessionOtherDetail, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvementDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionCourtStepsRequested, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field behavioursDescriptionLabel of type Label ignored -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewBehaviourLabel of type Label ignored -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursNature, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpAction, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typesOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: natureOfBehaviour, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentTypeOfHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: behaviours, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursNature":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"behavioursApplicantHelpAction":{"enabled": false},"typesOfAbuse":{"enabled": false},"natureOfBehaviour":{"enabled": false},"abuseStartDateAndLength":{"enabled": false},"respondentSoughtHelp":{"enabled": false},"respondentTypeOfHelp":{"enabled": false}}}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtection, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestraining, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctive, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlace, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsCourtActions, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildUnsupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildSupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildOtherContact, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousOrOngoingProceedingsForChildren, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: id, mapping: {"type" : "double"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: payAgreeStatement, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAgreeStatement, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: feeAmount, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFees, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: viewPDFlinkLabelText, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationLink, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestReference, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestAmount, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ccdCaseNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestStatus, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: callBackUpdateTimestamp, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentCallbackServiceRequestUpdate, mapping: {"properties":{"serviceRequestReference":{"enabled": false},"serviceRequestAmount":{"enabled": false},"ccdCaseNumber":{"enabled": false},"serviceRequestStatus":{"enabled": false},"callBackUpdateTimestamp":{"enabled": false},"payment":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentServiceRequestReferenceNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationship, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationObject, mapping: {"properties":{"applicantRelationship":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationStartAndEndComplexType, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipDate, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationDateInfoObject, mapping: {"properties":{"relationStartAndEndComplexType":{"enabled": false},"applicantRelationshipDate":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationOptionsOther, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationOptions, mapping: {"properties":{"applicantRelationshipOptions":{"enabled": false},"relationOptionsOther":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RejectReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: returnMessage, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familymanCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewEmailLabel of type Label ignored -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localCourtAdmin, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"email":{"enabled": false}}}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: idamId, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: role, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: emailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: userInfo, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"idamId":{"enabled": false},"firstName":{"enabled": false},"lastName":{"enabled": false},"role":{"enabled": false},"emailAddress":{"enabled": false}}}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseworkerEmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantSolicitorEmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: issueDate, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsConfidentialDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"address":{"enabled": false},"email":{"enabled": false},"phoneNumber":{"enabled": false}}}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPerson, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenConfidentialDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"otherPerson":{"enabled": false}}}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConfidentialDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fullName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildrenConfidentialDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false}}}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TestField, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoing, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoingToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherReasonApplicantWantToStopFromRespondentDoing, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourData, mapping: {"properties":{"applicantWantToStopFromRespondentDoing":{"enabled": false},"applicantWantToStopFromRespondentDoingToChild":{"enabled": false},"otherReasonApplicantWantToStopFromRespondentDoing":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationLinkToCA, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyDetails, mapping: {"properties":{"doesApplicantHaveChildren":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fullName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantChildRelationship, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRespondentShareParental, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentChildRelationship, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantChildDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false},"dateOfBirth":{"enabled": false},"applicantChildRelationship":{"enabled": false},"applicantRespondentShareParental":{"enabled": false},"respondentChildRelationship":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderWithoutGivingNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderWithoutGivingNoticeToRespondent, mapping: {"properties":{"orderWithoutGivingNotice":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: futherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"properties":{"reasonForOrderWithoutGivingNotice":{"enabled": false},"futherDetails":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRespondentAlreadyInBailCondition, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: bailConditionEndDate, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bailDetails, mapping: {"properties":{"isRespondentAlreadyInBailCondition":{"enabled": false},"bailConditionEndDate":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDtailsForWithoutNoticeOrder, mapping: {"properties":{"otherDetails":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressLabel of type Label ignored -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: peopleLivingAtThisAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: textAreaSomethingElse, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: everLivedAtTheAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: intendToLiveAtTheAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doAnyChildrenLiveAtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: children, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyAdapted, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: howIsThePropertyAdapted, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isThereMortgageOnProperty, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: mortgages, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyRented, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landlords, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveHomeRights, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: livingSituation, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: familyHome, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: furtherInformation, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: home, mapping: {"properties":{"address":{"enabled": false},"peopleLivingAtThisAddress":{"enabled": false},"textAreaSomethingElse":{"enabled": false},"everLivedAtTheAddress":{"enabled": false},"intendToLiveAtTheAddress":{"enabled": false},"doAnyChildrenLiveAtAddress":{"enabled": false},"children":{"enabled": false},"isPropertyAdapted":{"enabled": false},"howIsThePropertyAdapted":{"enabled": false},"isThereMortgageOnProperty":{"enabled": false},"mortgages":{"enabled": false},"isPropertyRented":{"enabled": false},"landlords":{"enabled": false},"doesApplicantHaveHomeRights":{"enabled": false},"livingSituation":{"enabled": false},"familyHome":{"enabled": false},"furtherInformation":{"enabled": false}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmitted, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimer, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruth, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNotificationSent, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtEmailFound, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDocumentGenerated, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorOrgName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitCountyCourtSelection, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrganisationPolicy, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAge, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialCourtName, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseOrigin, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasDraftOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: numberOfAttachments, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSubmittedTimeStamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmittedAndTime, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseCreatedBy, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsApplyingFor, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC2Application, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicantsList, mapping: {"enabled": false} -2026-02-06T16:26:19.903 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryOtherApplicationsBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryC2Document, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createdDate, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lastModifiedDate, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentDocumentType, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentType, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentRequestedByCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadedDocs, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"parentDocumentType":{"enabled": false},"documentType":{"enabled": false},"partyName":{"enabled": false},"isApplicant":{"enabled": false},"uploadedBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"cafcassDocument":{"enabled": false},"documentRequestedByCourt":{"enabled": false}}}}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAddCaseNumberAdded, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationFeesToPay, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFees, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFeesNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplications, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: representedPartyType, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListVersion, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInHearingState, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInvokedFromTask, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNonWorkAllocationEnabledCourtSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserRole, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNoteId, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TTL, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orders, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersSubmittedWithApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvedOrders, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: standardDirectionsOrder, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transcriptsOfJudgements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistratesFactsAndReasons, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesFromHearing, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: preliminaryDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: positionStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5Statements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applications, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AResponse, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedingsRes, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: MIAMCertificate, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: prevOrdersSubmittedWithAppl, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersFromOtherProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AApplication, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AResponse, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsFromOtherProceedings, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessStatementAndEvidence, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherWitnessStatements, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pathfinder, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityOtherDoc, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CAFCASSReportAndGuardian, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport1, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport2, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingLetter, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section7Report, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: 16aRiskAssessment, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialGuardianshipReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocs, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section37Report, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sec37Report, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: expertReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalReports, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: DNAReports_expertReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resultsOfHairStrandBloodTests, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeDisclosures, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalRecords, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugAndAlcoholTest(toxicology), mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeReport, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondentToAndFromCourt, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailsToCourt, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: publicFundingCertificates, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticesOfActingDischarge, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestForFASFormsToChange, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessAvailability, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lettersOfComplaint, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SPIPReferralRequests, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeOfficeDWPResponses, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalCorrespondence, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: impInfoAboutAddrContact, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: privacyNotice, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialMeasures, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearing, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfHearing, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtBundle, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSummary, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidential, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDoc, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrders, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{ "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } }}} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseInvites, mapping: {"enabled": false} -2026-02-06T16:26:19.904 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: CaseReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Reason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OtherDescription, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ReasonForLink, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"Reason":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OtherDescription":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: CreatedDateTime, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: CaseType, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinks, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"CaseReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"ReasonForLink":{"properties":{"id":{"enabled": false},"value":{"properties":{"Reason":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OtherDescription":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}},"CreatedDateTime":{"type" : "date", "ignore_malformed": true},"CaseType":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: maintainCaseLinksFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinksFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderAppliedFor, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: parentalResponsibilityDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: whoDoesTheChildLiveWith, mapping: { "properties": { "value": { "properties": { "code": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} }, "label": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} } } }, "list_items": { "type": "object", "enabled": false } } } -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerName, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPosition, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerOtherPosition, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: cafcassOfficerPhoneNo, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isFinalOrderIssued, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionReason, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalDecisionResolutionDate, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildDetails, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"dateOfBirth":{"type" : "date", "ignore_malformed": true},"isDateOfBirthUnknown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"gender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherGender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"orderAppliedFor":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"parentalResponsibilityDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"whoDoesTheChildLiveWith":{ "properties": { "value": { "properties": { "code": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} }, "label": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} } } }, "list_items": { "type": "object", "enabled": false } } },"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndApplicantRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"applicantId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndApplicantRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"applicantId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndApplicantRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isChildLivesWithPersonConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOtherPeopleIdConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndOtherPeopleRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherPeopleId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isChildLivesWithPersonConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isOtherPeopleIdConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPeopleId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndOtherPeopleRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isChildLivesWithPersonConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOtherPeopleIdConfidential, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherPeopleId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndOtherPeopleRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isChildLivesWithPersonConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"isOtherPeopleIdConfidential":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndRespondentRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"respondentId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childFullName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelation, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childAndRespondentRelationOtherDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childLivesWith, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"respondentId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childFullName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelation":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childAndRespondentRelationOtherDetails":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"childLivesWith":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenResponseC7DocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleKnowYourContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentiality, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheDecisionAboutAllChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOptionsForFinalDecision, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateFinalDecisionWasMade, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalOutcomeForChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalCaseClosedDate, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosed, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedRespondentPack, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unservedCitizenRespondentPack, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedApplicantPack, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedOthersPack, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedLaPack, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialCheckFailed, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationServedYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectionReason, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedCafcassCymruPack, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appAC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appBC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appCC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appDC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appEC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherAC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherBC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherCC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtId, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForAmendCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cantFindCourtCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transferredCourtFrom, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourtDa, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherReasonToTransferDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc1, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc2, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtNavCase, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocs, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deletionConsent, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dfjArea, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: swanseaDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: humbersideDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: essexAndSuffolkDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wolverhamptonDFJCourt, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isEngDocGen, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshDocGen, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: accessCodeNotifications, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollectionId, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassSafeguardingIssue, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassCymruSafeguardingIssue, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPreamblesList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingsAndNextStepsList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassOrCymruList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCourtList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioOtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFurtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationReason, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationSpecificReason, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewAtSecondGateKeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepsAllocationTo, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationIsReservedTo, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingOn, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDate, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFirstHearingUrgencyDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCourtConsider, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentTimeShortened, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentDayShortened, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentMustBeServedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingRefusedCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgencyRefusedDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraStartDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParticipationDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.905 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPerson, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPersonWhoRequiresInterpreter, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterDialectRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUpdateContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPersonName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParentWithCare, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationToApplyPermission, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioRightToAskCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPartiesRaisedAbuseCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServe, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassNextStepEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruFileAndServe, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruNextStepEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7EditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ImpactAnalysisOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7FactsEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7daOccuredEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ChildImpactAnalysis, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNameOfCouncil, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruReportSentByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7CheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7Check, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassText, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymruText, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherDirectionDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationReason, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationSpecificReason, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationSittingBeforeOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationStartDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtHavingHeard, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx740, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationQualifiedLegal, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx741, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentToCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsMaximumPages, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpecifiedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingPartiesDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpipAttendance, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHospitalRecordsDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDisclosureUploadedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpUploadedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolUploadedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsOption, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscApplicantName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpApplicantName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromDiscGpCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsApplicantName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocsEvidenceWitnessEvidence, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterSecondGK, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSecondHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAllocationTo, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCourtConsider, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentTimeShortened, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentMustBeServedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingNotNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraStartDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParticipationDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamAttendingPerson, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingOn, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraDecideBy, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraStartDateAndTime, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearingByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoJoiningInstructionsForRH, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingAllegationsMadeBy, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtHasRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllegationsDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWrittenResponseDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsAlsoSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingMaximumPages, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingHowManyWitnessEvidence, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPersonNeedsInterpreter, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterDialectRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUpdateContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNamedJudgeFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentAnotherReason, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterGatekeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateDecisionJudgeFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtRequests, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsText, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsText, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsForFactFindingHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsListText, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsListText, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityName, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTextArea, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParentWithCare, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoRightToAskCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartiesRaisedAbuseCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAfterSecondGatekeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAddNewPreambleCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAdminNotes, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToServeOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOrCymruNeedToProvideReport, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenReportsMustBeFiled, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderEndsInvolvementOfCafcassOrCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatDoWithOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrdersDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewUploadedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrderWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToEditTheOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.906 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderSolicitor, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderCourtAdmin, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsToLegalRepresentative, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalRepInstructionsPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdmin, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServe, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsFromJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderUploadedAsDraftFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderOptionType, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: makeChangesToUploadedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrAmendDirectionsFromJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedUploadOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyUploadJourney, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyDraftJourney, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectedOrdersDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editOrderTextInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalWelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFl401CaseCreatedForWithOutNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WithOutNoticeReasonToRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reducedNoticePeriodDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesList, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesFurtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantNeedsFurtherInfoDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNeedsFileStatementDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDirectionsToAdmin, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401LonOrderCompleteToServe, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ReasonsForListWithoutNoticeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401listOnNoticeHearingInstruction, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruthResubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheckResubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadWitnessDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadSupportDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNameHmctsInternal, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OtherCaseReferences, mapping: {"properties":{"id":{"enabled": false},"value":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Name, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: EmailAddress, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: DateOfBirth, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: DateOfDeath, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: SearchParties, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"EmailAddress":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"DateOfBirth":{"type" : "date", "ignore_malformed": true},"DateOfDeath":{"type" : "date", "ignore_malformed": true}}}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SearchCriteria, mapping: {"properties":{"OtherCaseReferences":{"properties":{"id":{"enabled": false},"value":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"SearchParties":{"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"EmailAddress":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"DateOfBirth":{"type" : "date", "ignore_malformed": true},"DateOfDeath":{"type" : "date", "ignore_malformed": true}}}}}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementCategory, mapping: { "properties": { "value": { "properties": { "code": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} }, "label": { "type": "text" , "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}} } } }, "list_items": { "type": "object", "enabled": false } } } -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionId, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: region, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationId, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocation, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementLocation, mapping: {"properties":{"regionId":{"enabled": false},"region":{"enabled": false},"baseLocationId":{"enabled": false},"baseLocation":{"enabled": false},"regionName":{"enabled": false},"baseLocationName":{"enabled": false}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingId, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingStatus, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingListed, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfAppList, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfApplicationDynamicData, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: outstandingBalance, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: managerAgreedApplicationBeforePayment, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addHwfCaseNoteShort, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheCaseInDraftState, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReasonsForListOnNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAndAdditionalReasons, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingInstruction, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtList, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtCodeFromFact, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentCategoryChecklist, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherEvidences, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainApplicationDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: giveDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondence, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppDocForTabDisplay, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppNotConf, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondenceForTabDisplay, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: corrNotConf, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsForTabDisplay, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocNotConf, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsTriggeredBy, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsRestrictedFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8DocumentPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC21Order, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedC21Order, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c21OrderOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementsOrdersToIssue, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectChildArrangementsOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOfficeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createSelectOrderOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withdrawnOrRefusedOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectTypeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doesOrderClosesCase, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderByConsent, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseWithdrawn, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wasTheOrderApprovedAtHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingType, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingsType, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistratesLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: justiceLegalAdviserFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recitalsOrPreamble, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherDirectionsIfRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForTransfer, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTransferOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrderRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassRecipient, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherRecipient, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenList, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childListForSpecialGuardianship, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderHeader1, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOrderUploaded, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesOrderDocumentNeedSeal, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderTypeId, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderType, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: withdrawnRequestType, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isWithdrawnRequestApproved, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfOrder, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesOrderClosesCase, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderDocumentWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderClosesCase, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childrenList, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isTheOrderAboutChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isTheOrderAboutAllChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serveOrderDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: manageOrderHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: judgeNotes, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: adminNotes, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sdoDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectedHearingType, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isOrderCreatedBySolicitor, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfChildArrangementsOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: c21OrderOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childArrangementsOrdersToIssue, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectChildArrangementsOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: childOption, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: bulkPrintOrderDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAutoHearingReqPending, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sosStatus, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: fl404CustomFields, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: finalisationDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderCollection, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"isOrderUploaded":{"enabled": false},"doesOrderDocumentNeedSeal":{"enabled": false},"orderTypeId":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"orderType":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"withdrawnRequestType":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"isWithdrawnRequestApproved":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"typeOfOrder":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"doesOrderClosesCase":{"enabled": false},"orderDocumentWelsh":{"enabled": false},"orderClosesCase":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"childrenList":{"enabled": false},"isTheOrderAboutChildren":{"enabled": false},"isTheOrderAboutAllChildren":{"enabled": false},"orderDocument":{"enabled": false},"otherDetails":{"enabled": false},"serveOrderDetails":{"enabled": false},"dateCreated":{"type" : "date", "ignore_malformed": true},"manageOrderHearingDetails":{"enabled": false},"judgeNotes":{"enabled": false},"adminNotes":{"enabled": false},"sdoDetails":{"enabled": false},"selectedHearingType":{"enabled": false},"isOrderCreatedBySolicitor":{"enabled": false},"typeOfChildArrangementsOrder":{"enabled": false},"c21OrderOptions":{"enabled": false},"childArrangementsOrdersToIssue":{"enabled": false},"selectChildArrangementsOrder":{"enabled": false},"childOption":{"enabled": false},"bulkPrintOrderDetails":{"enabled": false},"isAutoHearingReqPending":{"enabled": false},"sosStatus":{"enabled": false},"fl404CustomFields":{"enabled": false},"finalisationDetails":{"enabled": false}}}}} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName1, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName1, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantReference, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReference, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistrateLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianTextBox, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addressTheOrderAppliesTo, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404bCustomFields, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDeclares2, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeRights, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: theRespondent2, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest1, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay1, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay2, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStartTime, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEndTime, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest2, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenTheyLeave, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest3, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: moreDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest4, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest6, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionRelating, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest5, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade1, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEnds, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEndsTime, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearingTime, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName2, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOption, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ukPostcode2, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationCost, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appointedGuardianName, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404CustomFields, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderType, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateUploadOrderMade, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutAllChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daOrderForCaCase, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNeedToBeServed, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserType, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrderCreatedDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherInformationIfRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404SchoolDirections&Details, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenListForDocmosis, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.907 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDraHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasJudgeProvidedHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderName, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedHearingType, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingPageNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markedToServeEmailNotification, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingUser, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingAction, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaReviewRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForWA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSdoSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForSolicitorCreatedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForAdminCreatedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeCreatedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingTaskNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingOptionSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoApprovedTheOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isMultipleHearingSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaManagerReviewRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listElementsSetToDefaultValue, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedOrderHasDefaultCaseFields, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestSafeGuardingLetterUpdate, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeGuardingLetterUploadDueDate, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: checkForAutomatedHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalisationDetails, mapping: {"properties":{"judgeOrMagistrateTitle":{"enabled": false}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtName, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CaseNo, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402Applicant, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402ApplicantRef, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfhearing, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTime, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtname, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorOrdersHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCreatedBySolicitor, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcassCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantSolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentSolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5Present, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAutomatedHearingPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtName, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCaseNo, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicantReference, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentReference, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentDob, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingRepr, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingSolicitorCounsel, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingPerson, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingTerms, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfUnderTaking, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingDateExpiry, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryTime, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingFormSign, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDocumentToAmend, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersAmendedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectCheckOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectJudgeOrLa, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeToReviewOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaToReviewOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdminAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServeAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderAdditionalDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingOptionsForNonLegalRep, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherParties, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassServedOptions, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruServedOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailId, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrgDetailsList, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesDA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationDA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationDA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: personallyServeRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: displayLegalRepOption, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOnlyC47aOrderSelectedToServe, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeoplePresentInCaseFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptionsOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptionsOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartiesOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalOrderDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuseOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fcOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrdersOption, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderUploadedByConsent, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvalDate, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildInvolvedInMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantAttendedMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuClaimingExemptionMiam, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuExemptionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidences, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuIsDomesticAbuseEvidenceProvided, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: domesticAbuseDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidenceDocument, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"domesticAbuseDocument":{"enabled": false}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuNoDomesticAbuseEvidenceReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildProtectionConcernReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuUrgencyReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuPreviousMiamAttendanceReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDocFromDisputeResolutionProvider, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuTypeOfPreviousMiamAttendanceEvidence, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuCertificateByMediator, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuMediatorDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuOtherExemptionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeOrganisationRequestField, mapping: {"enabled": false} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicant, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondent, mapping: {"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.908 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.909 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5Policy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantPolicy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: FromTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ToTimestamp, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationAddress, mapping: {"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentPolicy, mapping: {"properties":{"Organisation":{"properties":{"OrganisationID":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}},"OrgPolicyCaseAssignedRole":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrgPolicyReference":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PreviousOrganisations":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "date", "ignore_malformed": true},"ToTimestamp":{"type" : "date", "ignore_malformed": true},"OrganisationName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"OrganisationAddress":{"properties":{"AddressLine1":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine2":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"AddressLine3":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostTown":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"County":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"PostCode":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"Country":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"LastNoCRequestedBy":{"type" : "keyword", "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5ReminderNotifications, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5RemindersSent, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotPartInTheCaseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotInTheCase, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"lastName":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"gender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"otherGender":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}},"isDateOfBirthKnown":{"type" : "keyword", "normalizer": "lowercase_normalizer"},"dateOfBirth":{"type" : "date", "ignore_malformed": true}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isPathfinderCase, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tempQuarantineDocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavQuarantineDocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: document, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: document, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: historicalRefugeDocuments, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removableDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentsToBeRemoved, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrdersDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrderText, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeStatusOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reopenStateTo, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abilityToParticipateInProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohYesOrNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohDomesticAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbductionYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseYesNo, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcerns, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupation, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtection, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestraining, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctive, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlace, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceEndDate, mapping: {"type" : "date", "ignore_malformed": true} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCourtName, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCaseNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDocument, mapping: { "properties":{ "document_binary_url":{ "type":"text", "index":false }, "document_filename":{ "type":"text" }, "document_url":{ "type":"text", "index":false }, "category_id":{ "type":"text" }, "upload_timestamp":{ "type":"date" } } } -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespDomesticBehavioursLabel of type Label ignored -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respTypeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDomesticBehaviours, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"respTypeOfAbuse":{"enabled": false},"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbuses, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbductionReasons, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreats, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreatsDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildrenLocationNow, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPassportOfficeNotified, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvementDetails, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionChildHasPassport, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsCourtActions, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildUnsupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildSupervisedTime, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildOtherContact, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPhysicalAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPsychologicalAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildSexualAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildEmotionalAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildFinancialAbuse, mapping: {"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.910 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildHasMultiplePassports, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossession, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossessionOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPassportDetails, mapping: {"properties":{"respChildHasMultiplePassports":{"enabled": false},"respChildPassportPossession":{"enabled": false},"respChildPassportPossessionOtherDetails":{"enabled": false}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAohYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAllegationsOfHarm, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDomesticAbuseBehaviour, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbuseBehaviour, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbduction, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentOtherConcerns, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAttendingTheCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentADocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyName, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: createdBy, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: documentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: citizenDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8Document, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentC8DocumentWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateTimeCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8Documents, mapping: {"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfirmEditContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConsentToApplication, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementChild, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: keepContactDetailsPrivate, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialListDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorHaveYouAttendedMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatIsMiamPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpMiamCostsExemptionsPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasRespondentAttendedMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentWillingToAttendMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReasonNotAttendingMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrPastProceedingsForChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentExistingProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmYesOrNoResponse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmWelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentResponseToAllegationOfHarm, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNameForResponse, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfidentialityDisclaimerSubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAgreeStatement, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7WelshResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorName, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListA, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListB, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListC, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListD, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListE, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7WelshResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC8ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC8ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPrivateReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToPrivateTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPublicReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsRestrictedReason, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSecurityClassification, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToRestrictTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: assignedUserDetailsText, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: c2DocumentBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicationsBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadedDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: author, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectedParties, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAdditionalApplicationsBundle, mapping: {"properties":{"c2DocumentBundle":{"enabled": false},"otherApplicationsBundle":{"enabled": false},"uploadedDateTime":{"enabled": false},"author":{"enabled": false},"payment":{"enabled": false},"partyType":{"enabled": false},"selectedParties":{"enabled": false}}} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAdditionalApplicationReviewed, mapping: {"type" : "keyword", "normalizer": "lowercase_normalizer"} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDocsDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDecisionYesOrNo, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docToBeReviewed, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docLabel, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: restrictedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: chooseSendOrReply, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageObject, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageContent, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: openMessages, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: closedMessages, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: externalMessageAttachDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReply, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeForSendAndReply, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messages, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondToMessage, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageObject, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sendMessageObject, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalMessageAttachDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificGateKeeperNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviserGatekeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdvisorList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: gatekeepingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationScreen1, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sentDocumentPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pd36qLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfSafetySupportLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationHeader, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalServedApplicationDetailsList, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeToRespondentOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRecipientsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherParties, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassServedOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruServedOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.911 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailId, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeoplePresentInCaseFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaIsOrderListEmpty, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: proceedToServing, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeLocalAuthorityYesOrNo, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeC8ToLocalAuthorityYesOrNo, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaDocumentDynamicListForLa, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaLaEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: missingAddressWarningText, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responsibleForService, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOccupationOrderSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicantRepresented, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: productHearingBundleOn, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confirmRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaApplicantsList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRespondentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeopleList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailOptionChecked, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailOptionChecked, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailAddressList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailAddressList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipientsList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsCheckOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodSolicitorServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodCitizenServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodUnServedPack, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servedDocumentsDetailsList, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodServeToRespondentOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: canDocumentsBeServed, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepChooseParties, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepDisclaimer, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceAddRecipient, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForApplication, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceWhatWasServed, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimerSubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationWelshLink, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeCase, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseStatus, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: urgencyDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationTypeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarm, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typesOfHarmRevised, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarmRevised, mapping: {"properties":{"typesOfHarmRevised":{"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}}}} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangement, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: summaryTabForOrderAppliedFor, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsForSummaryTab, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfSubmission, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingEmptyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosedDate, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentServiceRequestReferenceNumber, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentStatus, mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskName, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskToBeCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpHwfRefNo, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundleId, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withDrawApplicationData, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWithdrawRequestSent, mapping: {"enabled": false} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: [STATE], mapping: {"type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256, "normalizer": "lowercase_normalizer"}}} -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator generating case data classification mapping -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteHeaderCaseName of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addCaseNoteLink of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepHeader of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeLegalRepInfo of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmHint of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationOfHarmOrdersLabelDetail of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbductionLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field othersConcernsLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field newAllegationsOfHarmChildContactLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPhysicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childPsychologicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childSexualAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childEmotionalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childFinancialAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudeLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeInfo of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ApplicationPaymentLinkLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabCaseNameLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabHearingUrgencyLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabApplicantDetailsLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabRespondentDetailsLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabDeclarationLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildRevisedLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabTypeOfApplicationLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmRevisedLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabMiamLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherProceedingsLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabInternationalElementLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAttendingTheHearingLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabLitigationCapacityLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabWelshLanguageRequirementsLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabAllegationsOfHarmDetailsLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleInTheCaseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherPeopleRevisedInTheCaseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabOtherChildNotInTheCaseLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndApplicantsRelationLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndRespondentRelationLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTabChildAndOtherPeopleRelationLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantFamilyTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childInfoTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childToBeProtectedTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401SolicitorLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field homeDetailsTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentBehaviourTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withoutNoticeOrderTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field relationshipToRespondentTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ChildDetailsTableLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fL401ApplicationTabDeclarationLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesDetails of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherExternal of type FlagLauncher ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field flagLauncherInternal of type FlagLauncher ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createBundleSubmitLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNext of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field bundleCreationSubmittedWhatHappensNextLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field taskListReturnLabel of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseHistory of type CaseHistoryViewer ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelPleaseUploadDocuments of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelDocumentsRequired of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelContactOrResidenceOrder of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelC8FormForConfidentiality of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelUploadOtherDocuments of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelLanguageRequirements of type Label ignored -2026-02-06T16:26:19.912 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAccessibility of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelAdjustmentsRequired of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangements of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsDescription of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelSpecialArrangementsRequired of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelIntermediaryDescription of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraConsentOrderNotification of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field natureOfOrderLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraWhyMakingApplication2 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraApplicationDetails of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbduction of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field paraChildAbuse of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelWhereChildrenLive of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildren of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelChildrenAdditionalQuestions of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherCourtCases of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheApplicants of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelTheRespondents of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOthersToNotify of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field labelOtherChildren of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicantAttendedMIAMLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field claimingExemptionMIAMLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field familyMediatorMIAMLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionsSelectAll of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamDomesticViolenceSelectAll of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamChildProtectionConcernLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamUrgencyReasonSelectAll of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPreviousAttendanceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamOtherGroundsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageLabel1 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamCertificationPageMessage1 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpWithFeesNotAvailable of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseTypeOfApplicationLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ConfidentialityDisclaimerLabel1 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ConfidentialityDisclaimerLabel1 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100SelectFamilyCourtLabel1 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsAdditionalQuestionsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmHint of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmOrdersLabelDetail of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmOtherConcernsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationsOfHarmChildContactLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadApplicationLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadApplicationLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100draftOrderDocLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401draftOrderDocLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDeclaration of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeStmtLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayAgreeSignStmtLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPage of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayNextPageDesc of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayFee of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplication of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitAndPayDownloadApplicationLinkLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100submitAndPayDownloadApplicationLinkLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPDFlinkLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceRequest of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field rejectReasonLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returningAnApplicationText of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnMessageLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field localCourtHint of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo1 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo2 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo3 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo4 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo5 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo6 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo7 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo8 of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hearingUrgencyLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submitCountyCourtSelectionLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadC2Link of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalApplicationFeesToPayText of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field componentLauncher of type ComponentLauncher ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseLinksTabTitle of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field LinkedCasesComponentLauncher of type ComponentLauncher ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndApplicantRelationsSubLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndOtherPeopleRelationsSubLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childAndRespondentRelationsSubLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field recordChildrenLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDecisionLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field finalOutComeLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityCheckWarningText of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCourtWarning of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field deleteApplicationNote of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43Label of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c43LabelBold of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCafcassOrCafcassCymruLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioSafeGuardingOnIssueCymruLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDirectionsCaseNeedsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioListLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferApplicationLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingsAndNextStepsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCaseReviewLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDecisionLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocateNamedJudgeLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingPermissionLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentFirstHearingPlaceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentBecauseLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioHearingUrgentTimeShortenedLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedCourtLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeFirstHearingLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeApprovedApplicationLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeNotApprovedLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFhdraHearingDisputeLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParticipationDirectionsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAttendanceAtMiamLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioCourtToInterpretersLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUpdateContactDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationMagistrateLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationDistJudgeLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocationCircuitJudgeLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioAllocatedToJudgeLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioReservedToJudgeLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioFirstHearingUrgencyDetailLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioUrgentHearingRefusedAnotherReasonLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeAnotherReasonLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioWithoutNoticeHearingRefusedReasonLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPositionStatementOtherCheckDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioMiamOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioInterpreterOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioTransferCourtDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioLocalAuthorityLetterLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioOtherLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOfPapersLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioParentWithCareLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioApplicationToApplyPermissionLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioDisclosureOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPreamblesLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioRightToAskCourtLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dioPartiesRaisedAbuseLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassOrCafcassCymruLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNextStepsCymruLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSafeGuardingNewPartnerCymruLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSectionReportOrChildImpactLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7FactsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7daOccuredLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartyToProvideDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNewPartnersToCafcassLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSection7CheckLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsCaseNeedsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCourtLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferApplicationLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationProhibitionLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx740Label of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationQualifiedLegalLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoTransferCourtDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationCourtCheckLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCrossExaminationEx741Label of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDocumentationAndEvidenceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpecifiedDocumentsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsFilingLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSpipAttendanceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDisclosureLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromGpLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoWitnessStatementsCheckLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInstructionsDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoApplicantNameLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRespondentNameLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMedicalDiscDetailsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPApplicantNameLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoGPRespondentNameLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromDiscGpLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSApplicantNameLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLSRespondentNameLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLetterFromSchoolCheckLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoScheduleOfAllegationsCheckLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisClosureProceedingLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingsAndNextStepsLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDecisionLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUrgentHearingPlaceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamAttendanceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPermissionHearingLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForDraLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSettlementConferenceLabel of type Label ignored -2026-02-06T16:26:19.913 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoArrangeInterpretersLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoUpdateContactDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterSecondGKLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingNotNeededLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParticipationDirectionsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoJoiningInstructionsForRHLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoHearingUrgentBecauseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFhdraHearingDisputeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationDistJudgeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationCircuitJudgeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocationMagistratesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoReservedToLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocatedToLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPositionStatementOtherCheckDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoMiamOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingOtherCheckLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoInterpreterOtherDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoCafcassFileAndServeDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field safeguardingCafcassCymruDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAllocateOrReserveJudgeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoNextStepsAfterGatekeepingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDirectionsForFactFindingHearingLabel2 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityLetterLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoLocalAuthorityDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoOtherLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoDisclosureOfPapersLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoParentWithCareLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAdditionalDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoSdoListLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPreamblesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoRightToAskCourtLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoPartiesRaisedAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAfterSecondGatekeepingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoAddNewPreambleLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sdoFactFindingHintText of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field previewDraftOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field instructionsToLegalRepresentativeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field yourInstructionsToLrLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field downloadOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openOrderAndReviewContentLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAmendedOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendedOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field blankOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404OccupationLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl404nonMolestationLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field editOrderTextInstructionsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeDocumentHintLabel1 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401OnNoticeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401WithOutNoticeReasonToRespondentLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field withOutNoticeReasonToShareApplicantLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401RejectListWithoutNoticeHearingRequestLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401ListOnNoticeHearingInstructionLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentsDetails of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessDuplicate of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitness of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentWitnessLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field fl401UploadDocumentSupport of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field beforeYouStart of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field updatePayBubble of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field approveDeliveryManagerOrSeniorManager of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field Checkthehelpwithfeesapplication of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationHelpwithfeesreferenceApplicantApplication of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field listWithoutNoticeHearingInstructionLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field furtherEvidenceLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field correspondenceLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherDocumentsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageDocumentsWarningText2 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field typeOfC21OrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21HearingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder13 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel1 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedC21OrderLabel2 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderC21SolicitorLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addOrderDetailsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder3 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel11 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder7 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassOfficeName of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caffcassCymruOfficeName of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel12 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createAnOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closeCaseDoableActions of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderMadeByLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field judgeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field transferCase of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrder of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkYourOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkOrderRestrictionsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderRecipientsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderHearingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSummaryLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderSolicitorLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder1 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder5 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel2 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel3 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel4 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel5 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel7 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel6 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel8 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel9 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel10 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel13 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel14 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel19 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderHeaderLabel1 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderCheckOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder10 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel1 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel12 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field childDetailsManageOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field appointedGuardianLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel20 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whenToServeOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameEditScreenLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel7 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel8 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel9 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel10 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel11 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameLabel13 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSolicitorLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameSummaryLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameHearingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameDirectionsToAdminLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderNameInstructionsFromJudgeLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadHintLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder4 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingRequiredLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createOneHearingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field creatingHearingOptionalLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createMultipleHearingLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrderLabel19 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingRequiredLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field createHearingOptionalLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingRequiredLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorCreateHearingOptionalLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel15 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectedOrder2 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderDownloadOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersDocumentToAmendLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field amendOrderReplaceOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrdersAmendedOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field managerCheckAmendOrder of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel21 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveOrderAdditionalDocumentsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel22 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAdminText of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtBailiffText of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel23 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field manageOrderHeaderLabel24 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field uploadAnOrder of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messagesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendOrReplyEventLink of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field openMessageLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field closedMessageLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamPolicyUpgradeExemptionsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel1 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field mpuAddEvidenceLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field submissionRequiredFieldsInfo9 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel5 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel2 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel3 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field miamExemptionLabel4 of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabApplicantsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildrenLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabRespondentsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndRespondentPartiesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherPartiesRevisedLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildNotInThePartiesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndApplicantPartiesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabChildAndRespondentPartiesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field partiesTabOtherChildAndOtherPeoplePartiesLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field PaymentHistory of type CasePaymentHistoryViewer ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field removeOrderNameLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field checkTheRemoveOrderLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field currentStatusLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherStatusMsg of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohHint of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAohOrdersLabelDetail of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbductionLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respOthersConcernsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respDomesticAbuseBehavioursSubLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAllegationsOfHarmChildContactLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPhysicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildPsychologicalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildSexualAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildEmotionalAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respChildFinancialAbuseSubLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentDomesticAbuseDescLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbuseDescLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentChildAbductionLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentOtherConcernsLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respAttendingTheCourtDaActLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field domesticAbuseProvisionLabel of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummaryHeading of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateSummary of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtActionHeading of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field courtAction of type Label ignored -2026-02-06T16:26:19.914 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field keepDetailsPrivateNoHeading of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field noNeedOfPrivateDetailsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field whatIsMiamLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field helpMiamCostsExemptionsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field responseToAllegationsOfHarmLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel1 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel2 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel3 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel4 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel5 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel6 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel7 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel8 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel9 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentNameForResponseLabel10 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field c100ResSolSubmitAndPayAgreeSignStmtLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolSuccessLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseStateLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseCourtLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentSolResponseDownloadLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelA of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelB of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelC of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelD of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field respondentTaskListLabelE of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field viewPdfResponseLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7Response of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field linkToDownloadC7ResponseLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateDisclaimer of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPrivateReasonLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToPrivateTabLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicDisclaimer of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsPublicReasonLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedDisclaimer of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field markAsRestrictedReasonLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reasonsToRestrictTabLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field assignedUserDetailsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field returnToPreviousStateLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel1 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel2 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel3 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field reviewDocsLabel4 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field docToBeReviewedLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field showLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field externalMessagesHint of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendingMessagesHint of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field messageReplyTableLabel2 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field letGateKeepersKnowLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sendToGateKeeperHint of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field selectOrdersLabel1 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sentDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serveTheseOrdersLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field automaticDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pd36qLetterLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangementsLetterLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field additionalDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field headerLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaHeaderLabel22 of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialDetailsArePresentBanner of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addDocumentsForLaLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextCA of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field missingAddressWarningTextDA of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaCheckRestrictionsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaConfirmRecipientsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field soaOrderSentToSolicitorLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfApplicationLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedPackLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedPackLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialCheckFailedLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodSelectDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field sodAdditionalDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsConfCheckWarningText of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field serviceOfDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field unServedDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field servedDocumentsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field ServiceRequest of type WaysToPay ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepWarningText of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solStopRepHeader of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceAddRecipientLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field stmtOfServiceLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field summaryLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allocatedJudgeLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field pathfinderLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field refugeLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field caseStatusLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field confidentialityDetailsLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field urgencyLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field applicationTypeLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field allegationOfHarmLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field specialArrangmentLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orderAppliedForLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field otherProceedingsLabelForSummaryTab of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field dateOfSubmissionLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field cafcassOfficerLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndCafcassOfficers, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"childId":{"type" : "keyword"},"childName":{"type" : "keyword"},"cafcassOfficerName":{"type" : "keyword"},"cafcassOfficerPosition":{"type" : "keyword"},"cafcassOfficerOtherPosition":{"type" : "keyword"},"cafcassOfficerEmailAddress":{"type" : "keyword"},"cafcassOfficerPhoneNo":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: testCaseName, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteHeaderCaseNameText, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: subject, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNote, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNotes, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addCaseNoteTable, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeLegalRepAndPartiesList, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersNonMolestationDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOccupationDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersForcedMarriageProtectionDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestraining, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersRestrainingDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctive, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersOtherInjunctiveDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newOrdersUndertakingInPlaceDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewDomesticBehavioursLabel of type Label ignored -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticBehaviours, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseBehavioursDocmosis, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false}}}}}}} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuses, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildAbductionReasons, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreats, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildrenLocationNow, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAbductionChildHasPassport, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newAgreeChildOtherContact, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPhysicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPsychologicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.915 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childSexualAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childEmotionalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typeOfAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: abuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: behavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childFinancialAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typeOfAbuse":{"enabled": false},"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificJudgeOrLegalAdviserNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviser, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNameAndEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdviserList, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudiciary, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tierOfJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingUrgencyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: declarationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401TypeOfApplicationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOverviewTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmDomesticAbuseYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbuseYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmChildAbductionYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmSubstanceAbuseDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcerns, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOverviewTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newAllegationsOfHarmYesNo":{"enabled": false},"newAllegationsOfHarmDomesticAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbuseYesNo":{"enabled": false},"newAllegationsOfHarmChildAbductionYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseYesNo":{"enabled": false},"newAllegationsOfHarmSubstanceAbuseDetails":{"enabled": false},"newAllegationsOfHarmOtherConcerns":{"enabled": false},"newAllegationsOfHarmOtherConcernsDetails":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPolicyUpgradeExemptionsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearingTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOrdersTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersNonMolestation, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: nonMolestationOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOccupation, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: occupationOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersForcedMarriageProtection, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: forcedMarriageProtectionOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersRestraining, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: restrainingOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersOtherInjunctive, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherInjunctiveOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newOrdersUndertakingInPlace, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: undertakingInPlaceOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOrdersTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newOrdersNonMolestation":{"enabled": false},"nonMolestationOrder":{"enabled": false},"newOrdersOccupation":{"enabled": false},"occupationOrder":{"enabled": false},"newOrdersForcedMarriageProtection":{"enabled": false},"forcedMarriageProtectionOrder":{"enabled": false},"newOrdersRestraining":{"enabled": false},"restrainingOrder":{"enabled": false},"newOrdersOtherInjunctive":{"enabled": false},"otherInjunctiveOrder":{"enabled": false},"newOrdersUndertakingInPlace":{"enabled": false},"undertakingInPlaceOrder":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildAbductionReasons, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreats, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newPreviousAbductionThreatsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildrenLocationNow, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPassportOfficeNotified, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvement, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionPreviousPoliceInvolvementDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAbductionChildHasPassport, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildAbductionTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newChildAbductionReasons":{"enabled": false},"newPreviousAbductionThreats":{"enabled": false},"newPreviousAbductionThreatsDetails":{"enabled": false},"newChildrenLocationNow":{"enabled": false},"newAbductionPassportOfficeNotified":{"enabled": false},"newAbductionPreviousPoliceInvolvement":{"enabled": false},"newAbductionPreviousPoliceInvolvementDetails":{"enabled": false},"newAbductionChildHasPassport":{"enabled": false},"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAllegationsOfHarmOtherConcernsCourtActions, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedOtherConcernsTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newAllegationsOfHarmOtherConcernsCourtActions":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildUnsupervisedTime, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildSupervisedTime, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newAgreeChildOtherContact, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedChildContactTable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newAgreeChildUnsupervisedTime":{"enabled": false},"newAgreeChildSupervisedTime":{"enabled": false},"newAgreeChildOtherContact":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleInTheCaseRevisedTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildNotInTheCaseTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantsRelationTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelationsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelationsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsRevisedExtraTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDetailsExtraTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childInfoTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childToBeProtectedTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ApplicantTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401SolicitorDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withoutNoticeOrderTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RespondentTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: relationshipToRespondentTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingsDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHomeEntered, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildDetailsTable, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedDATable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmRevisedCATable, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"typeOfAbuse":{"enabled": false},"allChildrenAreRisk":{"enabled": false},"whichChildrenAreRisk":{"enabled": false},"newAbuseNatureDescription":{"enabled": false},"newBehavioursStartDateAndLength":{"enabled": false},"newBehavioursApplicantSoughtHelp":{"enabled": false},"newBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awaitingInformationReasonList, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenAwpPayments, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplicationsFlag, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyList, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedBarrister, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"partyList":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerOrg":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorFullName":{"enabled": false}}}}} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPageAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: coverPagePartyName, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanCaseReference, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: scannedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: evidenceHandled, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScanEnvelopes, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConfidentiality, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildInternationalElements, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReasonableAdjustments, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildTypeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingWithoutNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildReturnUrl, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildMaim, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDocumentsCopy, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHearingUrgency, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildApplicantDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildRespondentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherChildrenDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildOtherPersonsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantConsentMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist1, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist1, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentReferenceNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildSafetyConcerns, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildScreeningQuestions, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildHelpWithFeesDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildConsentOrderDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildStatementOfTruth, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100RebuildChildPostCode, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFeesReferenceNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noOfDaysRemainingToSubmitCase, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantPcqId, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1ADraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c1AWelshDraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8Document, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8WelshDraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8DraftDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassDateTime, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantBarrister5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicantSolicitor5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caOtherParty5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentSolicitor5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5InternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister1ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister2ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister3ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister4ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondentBarrister5ExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseFlagsTaskCreated, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantBarristerExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantSolicitorInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentBarristerExternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentSolicitorInternalFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReviewLangAndSmReq, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isReviewLangAndSmReqReviewed, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createBundleTransitionDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.916 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bundleInformation, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtSeal, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskList, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListReturn, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: contactOrderDocumentsUploaded, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8FormDocumentsUploaded, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsUploaded, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshNeeded, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshNeeds, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewWelshNeedLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WelshNeeds, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"whoNeedsWelsh":{"enabled": false},"spokenOrWritten":{"enabled": false},"fl401SpokenOrWritten":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInterpreterNeeded, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field nameLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewInterpreterNeedLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: interpreterNeeds, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"party":{"enabled": false},"name":{"enabled": false},"language":{"enabled": false},"otherAssistance":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDisabilityPresent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: adjustmentsRequired, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecialArrangementsRequired, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsRequired, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isIntermediaryNeeded, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForIntermediary, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersApplyingFor, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfChildArrangementsOrder, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: natureOfOrder, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequired, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationPermissionRequiredReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuse, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbduction, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuse, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safetyWelfareConcerns, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbduction, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeNotified, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasPassport, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductedBefore, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childHasMultiplePassports, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossession, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportPossessionOtherDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolved, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPoliceInvolvedDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAtRiskOfAbductionReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childWhereabouts, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexually, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyStartDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyOngoing, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseSexuallyHelpSought, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysically, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyStartDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyOngoing, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbusePhysicallyHelpSought, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinancially, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyStartDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyOngoing, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseFinanciallyHelpSought, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomestic, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticStartDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticOngoing, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbuseDomesticHelpSought, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuse, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseStartDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseOngoing, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childDrugsAlcoholSubstanceAbuseHelpSought, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcerns, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherSafetyOrWelfareConcernsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenAddress, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildHasMultiplePassports, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossession, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: newChildPassportPossessionOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childPassportDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"newChildHasMultiplePassports":{"enabled": false},"newChildPassportPossession":{"enabled": false},"newChildPassportPossessionOtherDetails":{"enabled": false}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: children, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenKnownToAuthority, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndLocalAuthority, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenUnderChildProtection, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isChildrenWithSameParents, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentsAndTheirChildren, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentalResponsibilities, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoChildrenLiveWith, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAddressAndAdultsLivingWith, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isExistingProceedings, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenInProceeding, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewProceedingLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: existingProceedingsWithDoc, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"previousOrOngoingProceedings":{"enabled": false},"caseNumber":{"enabled": false},"dateStarted":{"enabled": false},"dateEnded":{"enabled": false},"typeOfOrder":{"enabled": false},"otherTypeOfOrder":{"enabled": false},"nameOfJudge":{"enabled": false},"nameOfCourt":{"enabled": false},"nameOfChildrenInvolved":{"enabled": false},"nameOfGuardian":{"enabled": false},"nameAndOffice":{"enabled": false},"uploadRelevantOrder":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicants, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplication, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsFL401, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: previousName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: gender, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherGender, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: placeOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressUnknown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5Years, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: addressLivedLessThan5YearsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvideEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: email, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isEmailAddressConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landline, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: phoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPhoneNumberConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPartyIdentityConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isDateOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isCurrentAddressKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: canYouProvidePhoneNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPlaceOfBirthKnown, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: dxNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorReference, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: representativeLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isAtAddressLessThan5YearsWithDontKnow, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doTheyHaveLegalRepresentation, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: sendSignUpLink, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorTelephone, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherPersonRelationshipToChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respondentLivedWithApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantPreferredContact, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: user, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: response, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: currentRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyLevelFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyId, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorPartyId, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: solicitorOrgUuid, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: contactPreferences, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRemoveLegalRepresentativeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: liveInRefuge, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: refugeConfidentialityC8Form, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerFirstName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerId, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerOrg, mapping: {"enabled": false} -2026-02-06T16:26:19.917 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: barristerRole, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentsFL401, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: othersToNotify, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field hintTextForC8Form of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewApplicantLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field solicitorDetails of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field orgUnregisteredLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field askOrgToRegisterLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespondentLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressOptionalLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartyInTheCaseRevised, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"previousName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"placeOfBirth":{"enabled": false},"address":{"enabled": false},"isAddressUnknown":{"enabled": false},"isAddressConfidential":{"enabled": false},"isAtAddressLessThan5Years":{"enabled": false},"addressLivedLessThan5YearsDetails":{"enabled": false},"canYouProvideEmailAddress":{"enabled": false},"email":{"enabled": false},"isEmailAddressConfidential":{"enabled": false},"landline":{"enabled": false},"phoneNumber":{"enabled": false},"isPhoneNumberConfidential":{"enabled": false},"isPartyIdentityConfidential":{"enabled": false},"relationshipToChildren":{"enabled": false},"isDateOfBirthKnown":{"enabled": false},"isCurrentAddressKnown":{"enabled": false},"canYouProvidePhoneNumber":{"enabled": false},"isPlaceOfBirthKnown":{"enabled": false},"solicitorOrg":{"enabled": false},"solicitorAddress":{"enabled": false},"dxNumber":{"enabled": false},"solicitorReference":{"enabled": false},"representativeFirstName":{"enabled": false},"representativeLastName":{"enabled": false},"isAtAddressLessThan5YearsWithDontKnow":{"enabled": false},"doTheyHaveLegalRepresentation":{"enabled": false},"sendSignUpLink":{"enabled": false},"solicitorEmail":{"enabled": false},"solicitorTelephone":{"enabled": false},"otherPersonRelationshipToChildren":{"enabled": false},"respondentLivedWithApplicant":{"enabled": false},"applicantContactInstructions":{"enabled": false},"applicantPreferredContact":{"enabled": false},"user":{"enabled": false},"response":{"enabled": false},"currentRespondent":{"enabled": false},"partyLevelFlag":{"enabled": false},"partyId":{"type" : "keyword"},"solicitorPartyId":{"type" : "keyword"},"solicitorOrgUuid":{"enabled": false},"contactPreferences":{"enabled": false},"isRemoveLegalRepresentativeRequested":{"enabled": false},"liveInRefuge":{"enabled": false},"refugeConfidentialityC8Form":{"enabled": false},"barristerFirstName":{"enabled": false},"barristerLastName":{"enabled": false},"barristerEmail":{"enabled": false},"barristerId":{"enabled": false},"barristerOrg":{"enabled": false},"barristerRole":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherChildren, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"dateOfBirth":{"enabled": false},"isDateOfBirthUnknown":{"enabled": false},"gender":{"enabled": false},"otherGender":{"enabled": false},"orderAppliedFor":{"enabled": false},"applicantsRelationshipToChild":{"enabled": false},"otherApplicantsRelationshipToChild":{"enabled": false},"respondentsRelationshipToChild":{"enabled": false},"otherRespondentsRelationshipToChild":{"enabled": false},"childLiveWith":{"enabled": false},"personWhoLivesWithChild":{"enabled": false},"parentalResponsibilityDetails":{"enabled": false},"relationshipToApplicant":{"enabled": false},"relationshipToRespondent":{"enabled": false},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAttendedMiam, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: claimingExemptionMiam, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorMiam, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamExemptionsChecklist, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamDomesticViolenceChecklist, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamChildProtectionConcernList, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamUrgencyReasonChecklist, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamPreviousAttendanceChecklist, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamOtherGroundsChecklist, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mediatorRegistrationNumber1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familyMediatorServiceName1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soleTraderName1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: miamCertificationDocumentUpload1, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: consentOrder, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftConsentOrderFile, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseUrgent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseUrgencyTimeAndReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: effortsMadeWithRespondents, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouNeedAWithoutNoticeHearing, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForApplicationWithoutNotice, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouRequireAHearingWithReducedNotice, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: setOutReasonsBelow, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: areRespondentsAwareOfProceedings, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantCaseName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrRespondentCaseName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CaseAccessCategory, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFromCourtNav, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedCaseTypeID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTypeOfApplication, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: state, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityStatementDisclaimer, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c100ConfidentialityStatementDisclaimer, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityFactors, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityReferrals, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactors, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: litigationCapacityOtherFactorsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherState, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssue, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthority, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: habitualResidentInOtherStateGiveReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: jurisdictionIssueGiveReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestToForeignAuthorityGiveReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirement, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplication, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: languageRequirementApplicationNeedWelsh, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: welshLanguageRequirementApplicationNeedEnglish, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthority, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenKnownToLocalAuthorityTextArea, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenSubjectOfChildProtectionPlan, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmDomesticAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbductionYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmChildAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmSubstanceAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: physicalAbuseVictim, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emotionalAbuseVictim, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: psychologicalAbuseVictim, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sexualAbuseVictim, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: financialAbuseVictim, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAbductionReasons, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreats, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousAbductionThreatsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenLocationNow, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPassportOfficeNotified, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildHasPassport, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosession, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionChildPassportPosessionOtherDetail, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvement, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionPreviousPoliceInvolvementDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcerns, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionOtherSafetyConcernsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abductionCourtStepsRequested, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field behavioursDescriptionLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewBehaviourLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: behaviours, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"abuseNatureDescription":{"enabled": false},"behavioursStartDateAndLength":{"enabled": false},"behavioursNature":{"enabled": false},"behavioursApplicantSoughtHelp":{"enabled": false},"behavioursApplicantHelpSoughtWho":{"enabled": false},"behavioursApplicantHelpAction":{"enabled": false},"typesOfAbuse":{"enabled": false},"natureOfBehaviour":{"enabled": false},"abuseStartDateAndLength":{"enabled": false},"respondentSoughtHelp":{"enabled": false},"respondentTypeOfHelp":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtection, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestraining, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctive, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlace, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNonMolestationDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOccupationDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersForcedMarriageProtectionDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersRestrainingDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersOtherInjunctiveDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersUndertakingInPlaceDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcerns, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationsOfHarmOtherConcernsCourtActions, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildUnsupervisedTime, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildSupervisedTime, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: agreeChildOtherContact, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previousOrOngoingProceedingsForChildren, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: id, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: payAgreeStatement, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAgreeStatement, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: feeAmount, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpWithFees, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: viewPDFlinkLabelText, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationLink, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestReference, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestAmount, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: ccdCaseNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: serviceRequestStatus, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: callBackUpdateTimestamp, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentCallbackServiceRequestUpdate, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"serviceRequestReference":{"enabled": false},"serviceRequestAmount":{"enabled": false},"ccdCaseNumber":{"enabled": false},"serviceRequestStatus":{"enabled": false},"callBackUpdateTimestamp":{"enabled": false},"payment":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: paymentServiceRequestReferenceNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationship, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationObject, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"applicantRelationship":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationStartAndEndComplexType, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipDate, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationDateInfoObject, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"relationStartAndEndComplexType":{"enabled": false},"applicantRelationshipDate":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantRelationshipOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: relationOptionsOther, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentRelationOptions, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"applicantRelationshipOptions":{"enabled": false},"relationOptionsOther":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401RejectReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: returnMessage, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: familymanCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewEmailLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localCourtAdmin, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"email":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: userInfo, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"idamId":{"enabled": false},"firstName":{"enabled": false},"lastName":{"enabled": false},"role":{"enabled": false},"emailAddress":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseworkerEmailAddress, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantSolicitorEmailAddress, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: issueDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantsConfidentialDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"address":{"enabled": false},"email":{"enabled": false},"phoneNumber":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenConfidentialDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"enabled": false},"lastName":{"enabled": false},"otherPerson":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConfidentialDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ChildrenConfidentialDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TestField, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoing, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: applicantWantToStopFromRespondentDoingToChild, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherReasonApplicantWantToStopFromRespondentDoing, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBehaviourData, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"applicantWantToStopFromRespondentDoing":{"enabled": false},"applicantWantToStopFromRespondentDoingToChild":{"enabled": false},"otherReasonApplicantWantToStopFromRespondentDoing":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfApplicationLinkToCA, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantFamilyDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"doesApplicantHaveChildren":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantChildDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"fullName":{"enabled": false},"dateOfBirth":{"enabled": false},"applicantChildRelationship":{"enabled": false},"applicantRespondentShareParental":{"enabled": false},"respondentChildRelationship":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: orderWithoutGivingNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderWithoutGivingNoticeToRespondent, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"orderWithoutGivingNotice":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: futherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForOrderWithoutGivingNotice, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"reasonForOrderWithoutGivingNotice":{"enabled": false},"futherDetails":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isRespondentAlreadyInBailCondition, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: bailConditionEndDate, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bailDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"isRespondentAlreadyInBailCondition":{"enabled": false},"bailConditionEndDate":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDtailsForWithoutNoticeOrder, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"otherDetails":{"enabled": false}}}}} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addressLabel of type Label ignored -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: address, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: peopleLivingAtThisAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: textAreaSomethingElse, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: everLivedAtTheAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: intendToLiveAtTheAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doAnyChildrenLiveAtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: children, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyAdapted, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: howIsThePropertyAdapted, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isThereMortgageOnProperty, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: mortgages, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: isPropertyRented, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: landlords, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: doesApplicantHaveHomeRights, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: livingSituation, mapping: {"enabled": false} -2026-02-06T16:26:19.918 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: familyHome, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: furtherInformation, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: home, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"address":{"enabled": false},"peopleLivingAtThisAddress":{"enabled": false},"textAreaSomethingElse":{"enabled": false},"everLivedAtTheAddress":{"enabled": false},"intendToLiveAtTheAddress":{"enabled": false},"doAnyChildrenLiveAtAddress":{"enabled": false},"children":{"enabled": false},"isPropertyAdapted":{"enabled": false},"howIsThePropertyAdapted":{"enabled": false},"isThereMortgageOnProperty":{"enabled": false},"mortgages":{"enabled": false},"isPropertyRented":{"enabled": false},"landlords":{"enabled": false},"doesApplicantHaveHomeRights":{"enabled": false},"livingSituation":{"enabled": false},"familyHome":{"enabled": false},"furtherInformation":{"enabled": false}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmitted, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401OtherProceedingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimer, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruth, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNotificationSent, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtEmailFound, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorName, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isDocumentGenerated, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSolicitorOrgName, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitCountyCourtSelection, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantOrganisationPolicy, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantAge, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialCourtName, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseOrigin, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasDraftOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: numberOfAttachments, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSubmittedTimeStamp, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateSubmittedAndTime, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseCreatedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsApplyingFor, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC2Application, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicantsList, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryOtherApplicationsBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: temporaryC2Document, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseFlags, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createdDate, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lastModifiedDate, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadedDocs, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"parentDocumentType":{"enabled": false},"documentType":{"enabled": false},"partyName":{"enabled": false},"isApplicant":{"enabled": false},"uploadedBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"cafcassDocument":{"enabled": false},"documentRequestedByCourt":{"enabled": false}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAddCaseNumberAdded, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationFeesToPay, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFees, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsHelpWithFeesNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfRequestedForAdditionalApplications, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: representedPartyType, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: taskListVersion, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInHearingState, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isInvokedFromTask, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isNonWorkAllocationEnabledCourtSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantContactInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserRole, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNoteId, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: TTL, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orders, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersSubmittedWithApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvedOrders, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: standardDirectionsOrder, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transcriptsOfJudgements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistratesFactsAndReasons, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesFromHearing, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: preliminaryDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: positionStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5Statements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applications, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantC1AResponse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsWithinProceedingsRes, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: MIAMCertificate, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: prevOrdersSubmittedWithAppl, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersFromOtherProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AApplication, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentC1AResponse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationsFromOtherProceedings, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessStatementAndEvidence, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherWitnessStatements, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pathfinder, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityOtherDoc, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: CAFCASSReportAndGuardian, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport1, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childImpactReport2, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingLetter, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section7Report, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: 16aRiskAssessment, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialGuardianshipReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocs, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: localAuthorityDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: section37Report, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sec37Report, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: expertReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalReports, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: DNAReports_expertReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resultsOfHairStrandBloodTests, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeDisclosures, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: medicalRecords, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: drugAndAlcoholTest(toxicology), mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: policeReport, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondentToAndFromCourt, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailsToCourt, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: publicFundingCertificates, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticesOfActingDischarge, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestForFASFormsToChange, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: witnessAvailability, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: lettersOfComplaint, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SPIPReferralRequests, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeOfficeDWPResponses, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalCorrespondence, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: impInfoAboutAddrContact, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: privacyNotice, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialMeasures, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: attendingTheHearing, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfHearing, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtBundle, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSummary, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidential, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anyOtherDoc, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrders, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c8ArchivedDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseInvites, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinks, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"CaseReference":{"type" : "keyword"},"ReasonForLink":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"Reason":{"type" : "keyword"},"OtherDescription":{"type" : "keyword"}}}}}}},"CreatedDateTime":{"type" : "keyword"},"CaseType":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: maintainCaseLinksFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseLinksFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field parentalResponsibility of type Label ignored -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewChildLabel of type Label ignored -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: newChildDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"},"dateOfBirth":{"type" : "keyword"},"isDateOfBirthUnknown":{"type" : "keyword"},"gender":{"type" : "keyword"},"otherGender":{"type" : "keyword"},"orderAppliedFor":{"type" : "keyword"},"parentalResponsibilityDetails":{"type" : "keyword"},"whoDoesTheChildLiveWith":{"type" : "keyword"},"cafcassOfficerName":{"enabled": false},"cafcassOfficerPosition":{"enabled": false},"cafcassOfficerOtherPosition":{"enabled": false},"cafcassOfficerEmailAddress":{"enabled": false},"cafcassOfficerPhoneNo":{"enabled": false},"isFinalOrderIssued":{"enabled": false},"finalDecisionResolutionReason":{"enabled": false},"finalDecisionResolutionDate":{"enabled": false}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndApplicantRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type" : "keyword"},"applicantId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childId":{"type" : "keyword"},"childAndApplicantRelation":{"type" : "keyword"},"childAndApplicantRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndApplicantRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"applicantFullName":{"type" : "keyword"},"applicantId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childId":{"type" : "keyword"},"childAndApplicantRelation":{"type" : "keyword"},"childAndApplicantRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndOtherPeopleRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type" : "keyword"},"otherPeopleId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndOtherPeopleRelation":{"type" : "keyword"},"childAndOtherPeopleRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"},"isChildLivesWithPersonConfidential":{"type" : "keyword"},"isOtherPeopleIdConfidential":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndOtherPeopleRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"otherPeopleFullName":{"type" : "keyword"},"otherPeopleId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndOtherPeopleRelation":{"type" : "keyword"},"childAndOtherPeopleRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"},"isChildLivesWithPersonConfidential":{"type" : "keyword"},"isOtherPeopleIdConfidential":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: buffChildAndRespondentRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type" : "keyword"},"respondentId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndRespondentRelation":{"type" : "keyword"},"childAndRespondentRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childAndRespondentRelations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"respondentFullName":{"type" : "keyword"},"respondentId":{"type" : "keyword"},"childId":{"type" : "keyword"},"childFullName":{"type" : "keyword"},"childAndRespondentRelation":{"type" : "keyword"},"childAndRespondentRelationOtherDetails":{"type" : "keyword"},"childLivesWith":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenResponseC7DocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeopleKnowYourContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentiality, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityList, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheDecisionAboutAllChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOptionsForFinalDecision, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateFinalDecisionWasMade, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalOutcomeForChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalCaseClosedDate, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosed, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedRespondentPack, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unservedCitizenRespondentPack, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedApplicantPack, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedOthersPack, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedLaPack, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialCheckFailed, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationServedYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectionReason, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: unServedCafcassCymruPack, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8EngDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8WelDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appAC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appBC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appCC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appDC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appEC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respBC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respCC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respEC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherAC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherBC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherCC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEC8RefugeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtId, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForAmendCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cantFindCourtCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: transferredCourtFrom, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonForTransferToAnotherCourtDa, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: anotherReasonToTransferDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc1, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401Doc2, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCourtNavCase, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocs, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deletionConsent, mapping: {"enabled": false} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dfjArea, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: swanseaDFJCourt, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.919 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: humbersideDFJCourt, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: essexAndSuffolkDFJCourt, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wolverhamptonDFJCourt, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isEngDocGen, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWelshDocGen, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: accessCodeNotifications, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderCollectionId, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassSafeguardingIssue, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassCymruSafeguardingIssue, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPreamblesList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingsAndNextStepsList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCafcassOrCymruList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCourtList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioOtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFurtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationReason, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferApplicationSpecificReason, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewAtSecondGateKeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepsAllocationTo, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationIsReservedTo, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingOn, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFirstHearingUrgencyDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentCourtConsider, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentTimeShortened, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentDayShortened, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentMustBeServedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgentByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingRefusedCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioHearingUrgencyRefusedDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeFirstHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingRefusedDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraStartDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParticipationDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPerson, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPersonWhoRequiresInterpreter, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterDialectRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUpdateContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioNextStepJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioAllocateOrReserveJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPositionStatementOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamAttendingPersonName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioMiamOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioInterpreterOtherDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioTransferCourtDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioParentWithCare, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioApplicationToApplyPermission, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioDisclosureOtherDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioRightToAskCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPartiesRaisedAbuseCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServe, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassNextStepEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruFileAndServe, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruNextStepEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7EditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ImpactAnalysisOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7FactsEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7daOccuredEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7ChildImpactAnalysis, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNameOfCouncil, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassCymruReportSentByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartyToProvideDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnersToCafcassCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7CheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSection7Check, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassText, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNewPartnerPartiesCafcassCymruText, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPreamblesTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingsAndNextStepsTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassOrCymruTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCourtTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocumentationAndEvidenceTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoOtherTempList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFurtherDirectionDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationReason, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferApplicationSpecificReason, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEditContent, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationSittingBeforeOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationStartDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtHavingHeard, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx740, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationQualifiedLegal, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoTransferCourtDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationCourtCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCrossExaminationEx741, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCopiesSentToCafcass, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsMaximumPages, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpecifiedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingPartiesDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSpipAttendance, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHospitalRecordsDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDisclosureUploadedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpUploadedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolUploadedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsOption, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWitnessStatementsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInstructionsFilingCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscApplicantName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMedicalDiscFilingCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpApplicantName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoGpRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromGpDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromDiscGpCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsApplicantName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLsRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLetterFromSchoolCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoScheduleOfAllegationsDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisClosureProceedingCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDocsEvidenceWitnessEvidence, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterSecondGK, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSecondHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAllocationTo, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCheckList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentCourtConsider, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentTimeShortened, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentMustBeServedBy, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingNotNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraStartDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParticipationDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementWritten, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamAttendingPerson, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingOn, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingBeforeAList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraDecideBy, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraStartDateAndTime, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsDraHearingByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceCourtDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementConferenceByWayOf, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoJoiningInstructionsForRH, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingAllegationsMadeBy, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtHasRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllegationsDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWrittenResponseDeadlineDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingReportsAlsoSentTo, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingMaximumPages, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingHowManyWitnessEvidence, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPersonNeedsInterpreter, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterDialectRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUpdateContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateOrReserveJudgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNamedJudgeFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPositionStatementOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoMiamOtherCheckDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoInterpreterOtherDetailsCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoCafcassFileAndServeCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeguardingCafcassCymruCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingUrgentAnotherReason, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoNextStepsAfterGatekeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAllocateDecisionJudgeFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoHearingCourtRequests, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsText, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsText, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDirectionsForFactFindingHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoNeedsToRespondAllegationsListText, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoWhoMadeAllegationsListText, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityName, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityTextArea, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityReportSubmitByDate, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoLocalAuthorityCheck, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDisclosureOfPapersCaseNumbers, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoParentWithCare, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoRightToAskCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPartiesRaisedAbuseCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAfterSecondGatekeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoAddNewPreambleCollection, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFactFindingFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAdminNotes, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToServeOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOrCymruNeedToProvideReport, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenReportsMustBeFiled, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderEndsInvolvementOfCafcassOrCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatDoWithOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrdersDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewUploadedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewDraftOrderWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doYouWantToEditTheOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderSolicitor, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatToDoWithOrderCourtAdmin, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsToLegalRepresentative, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalRepInstructionsPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdmin, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServe, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionsFromJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderUploadedAsDraftFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderOptionType, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: makeChangesToUploadedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrAmendDirectionsFromJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedUploadOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyUploadJourney, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeNotesEmptyDraftJourney, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: rejectedOrdersDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editOrderTextInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalWelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFl401CaseCreatedForWithOutNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401WithOutNoticeReasonToRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reducedNoticePeriodDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesList, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: linkedCaCasesFurtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantNeedsFurtherInfoDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNeedsFileStatementDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDirectionsToAdmin, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401LonOrderCompleteToServe, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ListOnNoticeDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ReasonsForListWithoutNoticeRequested, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401listOnNoticeHearingInstruction, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401StmtOfTruthResubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401ConfidentialityCheckResubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadWitnessDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl401UploadSupportDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNameHmctsInternal, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OtherCaseReferences, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: SearchParties, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type" : "keyword"},"EmailAddress":{"type" : "keyword"},"AddressLine1":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"DateOfBirth":{"type" : "keyword"},"DateOfDeath":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: SearchCriteria, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OtherCaseReferences":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"classification":{"type" : "keyword"}}}}},"SearchParties":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"Name":{"type" : "keyword"},"EmailAddress":{"type" : "keyword"},"AddressLine1":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"DateOfBirth":{"type" : "keyword"},"DateOfDeath":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.920 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementCategory, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionId, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: region, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationId, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocation, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: regionName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: baseLocationName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseManagementLocation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"regionId":{"enabled": false},"region":{"enabled": false},"baseLocationId":{"enabled": false},"baseLocation":{"enabled": false},"regionName":{"enabled": false},"baseLocationName":{"enabled": false}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingId, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentHearingStatus, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingListed, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfAppList, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hwfApplicationDynamicData, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: outstandingBalance, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: managerAgreedApplicationBeforePayment, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addHwfCaseNoteShort, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheCaseInDraftState, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudge, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedReasonsForListOnNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAndAdditionalReasons, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listWithoutNoticeHearingInstruction, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtList, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtCodeFromFact, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentCategoryChecklist, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherEvidences, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainApplicationDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: giveDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondence, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppDocForTabDisplay, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mainAppNotConf, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: correspondenceForTabDisplay, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: corrNotConf, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocumentsForTabDisplay, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherDocNotConf, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsTriggeredBy, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageDocumentsRestrictedFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8DocumentPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: typeOfC21Order, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedC21Order, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: c21OrderOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementsOrdersToIssue, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectChildArrangementsOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: parentName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassOfficeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: createSelectOrderOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withdrawnOrRefusedOrder, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectTypeOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: doesOrderClosesCase, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderByConsent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCaseWithdrawn, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: wasTheOrderApprovedAtHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingType, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingsType, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeOrMagistratesLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: justiceLegalAdviserFullName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recitalsOrPreamble, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderDirections, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherDirectionsIfRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsForTransfer, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseTransferOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: previewOrderDocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrderRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassRecipient, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherRecipient, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenList, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childListForSpecialGuardianship, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrderHeader1, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderCollection, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"isOrderUploaded":{"enabled": false},"doesOrderDocumentNeedSeal":{"enabled": false},"orderTypeId":{"type" : "keyword"},"orderType":{"type" : "keyword"},"withdrawnRequestType":{"type" : "keyword"},"isWithdrawnRequestApproved":{"type" : "keyword"},"typeOfOrder":{"type" : "keyword"},"doesOrderClosesCase":{"enabled": false},"orderDocumentWelsh":{"enabled": false},"orderClosesCase":{"type" : "keyword"},"childrenList":{"enabled": false},"isTheOrderAboutChildren":{"enabled": false},"isTheOrderAboutAllChildren":{"enabled": false},"orderDocument":{"enabled": false},"otherDetails":{"enabled": false},"serveOrderDetails":{"enabled": false},"dateCreated":{"type" : "keyword"},"manageOrderHearingDetails":{"enabled": false},"judgeNotes":{"enabled": false},"adminNotes":{"enabled": false},"sdoDetails":{"enabled": false},"selectedHearingType":{"enabled": false},"isOrderCreatedBySolicitor":{"enabled": false},"typeOfChildArrangementsOrder":{"enabled": false},"c21OrderOptions":{"enabled": false},"childArrangementsOrdersToIssue":{"enabled": false},"selectChildArrangementsOrder":{"enabled": false},"childOption":{"enabled": false},"bulkPrintOrderDetails":{"enabled": false},"isAutoHearingReqPending":{"enabled": false},"sosStatus":{"enabled": false},"fl404CustomFields":{"enabled": false},"finalisationDetails":{"enabled": false}}}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName1, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseNumber, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantName1, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantReference, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReference, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderRespondentName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: magistrateLastName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: guardianTextBox, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDateOfBirth, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: addressTheOrderAppliesTo, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404bCustomFields, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtDeclares2, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: homeRights, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicantInstructions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: theRespondent2, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest1, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay1, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDay2, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentStartTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEndTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest2, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whenTheyLeave, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest3, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: moreDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest4, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest6, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: instructionRelating, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: powerOfArrest5, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderMade1, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEnds, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOrderEndsTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: datePlaceHearingTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtName2, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childOption, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ukPostcode2, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationCost, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNotice, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: appointedGuardianName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404CustomFields, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderType, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateUploadOrderMade, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderAboutAllChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daOrderForCaCase, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersNeedToBeServed, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: loggedInUserType, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrderCreatedDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: furtherInformationIfRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl404SchoolDirections&Details, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenListForDocmosis, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioCaseReviewHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioPermissionHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentFirstHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioUrgentHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioWithoutNoticeHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dioFhdraHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoUrgentHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoFhdraHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoPermissionHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoDraHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sdoSettlementHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasJudgeProvidedHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedHearingType, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingPageNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markedToServeEmailNotification, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingUser, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: performingAction, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaReviewRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForWA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSdoSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForSolicitorCreatedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForAdminCreatedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: orderNameForJudgeCreatedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isHearingTaskNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hearingOptionSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderApproved, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whoApprovedTheOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isMultipleHearingSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeLaManagerReviewRequired, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: listElementsSetToDefaultValue, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: editedOrderHasDefaultCaseFields, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: requestSafeGuardingLetterUpdate, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: safeGuardingLetterUploadDueDate, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: checkForAutomatedHearing, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: judgeOrMagistrateTitle, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalisationDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"judgeOrMagistrateTitle":{"enabled": false}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CourtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402CaseNo, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402Applicant, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersFl402ApplicantRef, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfhearing, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfHearingTimeEstimate, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtname, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fl402HearingCourtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: ordersHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solicitorOrdersHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCreatedBySolicitor, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isCafcassCymru, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401ApplicantSolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isFL401RespondentSolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant1SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant2SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant3SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant4SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicant5SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5Present, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent1SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent2SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent3SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent4SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isRespondent5SolicitorPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAutomatedHearingPresent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtName, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCourtAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersCaseNo, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicant, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersApplicantReference, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentReference, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentDob, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersRespondentAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingRepr, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingSolicitorCounsel, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingPerson, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersUnderTakingTerms, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDateOfUnderTaking, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingDateExpiry, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingExpiryTime, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: underTakingFormSign, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersDocumentToAmend, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: manageOrdersAmendedOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectCheckOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: amendOrderSelectJudgeOrLa, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfJudgeToReviewOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfLaToReviewOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeDirectionsToAdminAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOrderCompleteToServeAmendOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrderAdditionalDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingOptionsForNonLegalRep, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherParties, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassServedOptions, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruServedOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassCymruEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassEmailId, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOrgDetailsList, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesDA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationDA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationDA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: personallyServeRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: displayLegalRepOption, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOnlyC47aOrderSelectedToServe, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPeoplePresentInCaseFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveToRespondentOptionsOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servingRespondentsOptionsCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: recipientsOptionsOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherPartiesOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serveOtherPartiesCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: deliveryByOptionsCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: emailInformationCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: postalInformationCaOnlyC47a, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalOrderDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childArrangementOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: domesticAbuseOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fcOrders, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherOrdersOption, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nameOfOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isTheOrderUploadedByConsent, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: approvalDate, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: uploadOrderDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildInvolvedInMiam, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantAttendedMiam, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuClaimingExemptionMiam, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuExemptionReasons, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidences, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuIsDomesticAbuseEvidenceProvided, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDomesticAbuseEvidenceDocument, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"domesticAbuseDocument":{"enabled": false}}}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuNoDomesticAbuseEvidenceReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuChildProtectionConcernReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuUrgencyReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuPreviousMiamAttendanceReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuDocFromDisputeResolutionProvider, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuTypeOfPreviousMiamAttendanceEvidence, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuCertificateByMediator, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuMediatorDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuOtherExemptionReasons, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: mpuApplicantUnableToAttendMiamReason2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: nextHearingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeOrganisationRequestField, mapping: {"enabled": false} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicant, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: firstName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: lastName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.921 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondent, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant1Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant2Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant3Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant4Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caApplicant5Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent1Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent2Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent3Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent4Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caRespondent5Policy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daApplicantPolicy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationID, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrganisationName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Organisation, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyCaseAssignedRole, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: OrgPolicyReference, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine1, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine2, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: AddressLine3, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostTown, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: County, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PostCode, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: Country, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PreviousOrganisations, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: PrepopulateToUsersOrganisation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: LastNoCRequestedBy, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: daRespondentPolicy, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"Organisation":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"OrganisationID":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"}}}}},"OrgPolicyCaseAssignedRole":{"type" : "keyword"},"OrgPolicyReference":{"type" : "keyword"},"PreviousOrganisations":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"FromTimestamp":{"type" : "keyword"},"ToTimestamp":{"type" : "keyword"},"OrganisationName":{"type" : "keyword"},"OrganisationAddress":{"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"AddressLine1":{"type" : "keyword"},"AddressLine2":{"type" : "keyword"},"AddressLine3":{"type" : "keyword"},"PostTown":{"type" : "keyword"},"County":{"type" : "keyword"},"PostCode":{"type" : "keyword"},"Country":{"type" : "keyword"}}}}}}}}}}},"PrepopulateToUsersOrganisation":{"type" : "keyword"},"LastNoCRequestedBy":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5ReminderNotifications, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: fm5RemindersSent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotPartInTheCaseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: childrenNotInTheCase, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"firstName":{"type" : "keyword"},"lastName":{"type" : "keyword"},"gender":{"type" : "keyword"},"otherGender":{"type" : "keyword"},"isDateOfBirthKnown":{"type" : "keyword"},"dateOfBirth":{"type" : "keyword"}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isPathfinderCase, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffQuarantineDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tempQuarantineDocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavQuarantineDocumentList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: historicalRefugeDocuments, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyType":{"enabled": false},"partyName":{"enabled": false},"documentDetails":{"enabled": false},"document":{"enabled": false}}}}}}} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removableDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: documentsToBeRemoved, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrdersDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: removeDraftOrderText, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: changeStatusOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reopenStateTo, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: abilityToParticipateInProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohYesOrNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohDomesticAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbductionYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohChildAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseYesNo, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohSubstanceAbuseDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcerns, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersNonMolestationDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupation, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOccupationDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtection, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersForcedMarriageProtectionDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestraining, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersRestrainingDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctive, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersOtherInjunctiveDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlace, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDateIssued, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceEndDate, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.922 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCurrent, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCourtName, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceCaseNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respOrdersUndertakingInPlaceDocument, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.store.elastic.mapping.MappingGenerator field addNewRespDomesticBehavioursLabel of type Label ignored -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respDomesticBehaviours, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"respTypeOfAbuse":{"enabled": false},"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbuses, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildAbductionReasons, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreats, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respPreviousAbductionThreatsDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildrenLocationNow, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPassportOfficeNotified, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvement, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionPreviousPoliceInvolvementDetails, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAbductionChildHasPassport, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAohOtherConcernsCourtActions, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildUnsupervisedTime, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildSupervisedTime, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAgreeChildOtherContact, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPhysicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPsychologicalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildSexualAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildEmotionalAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respAbuseNatureDescription, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursStartDateAndLength, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantSoughtHelp, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respBehavioursApplicantHelpSoughtWho, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildFinancialAbuse, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respAbuseNatureDescription":{"enabled": false},"respBehavioursStartDateAndLength":{"enabled": false},"respBehavioursApplicantSoughtHelp":{"enabled": false},"respBehavioursApplicantHelpSoughtWho":{"enabled": false}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respWhichChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPhysicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskPsychologicalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskSexualAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskEmotionalAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respAllChildrenAreRiskFinancialAbuse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildHasMultiplePassports, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossession, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: respChildPassportPossessionOtherDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respChildPassportDetails, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"respChildHasMultiplePassports":{"enabled": false},"respChildPassportPossession":{"enabled": false},"respChildPassportPossessionOtherDetails":{"enabled": false}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAohYesNo, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAllegationsOfHarm, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDomesticAbuseBehaviour, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbuseBehaviour, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentChildAbduction, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentOtherConcerns, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAttendingTheCourt, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentADocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentBc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentCc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentDc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentEc8Documents, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"id":{"enabled": false},"value":{"properties":{"partyName":{"enabled": false},"createdBy":{"enabled": false},"dateCreated":{"enabled": false},"documentDetails":{"enabled": false},"citizenDocument":{"enabled": false},"respondentC8Document":{"enabled": false},"respondentC8DocumentWelsh":{"enabled": false},"dateTimeCreated":{"enabled": false}}}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfirmEditContactDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentConsentToApplication, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internationalElementChild, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: keepContactDetailsPrivate, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialListDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorHaveYouAttendedMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: whatIsMiamPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: helpMiamCostsExemptionsPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: hasRespondentAttendedMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentWillingToAttendMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentReasonNotAttendingMiam, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: currentOrPastProceedingsForChildren, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentExistingProceedings, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmYesOrNoResponse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responseToAllegationsOfHarmWelshDocument, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentResponseToAllegationOfHarm, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentNameForResponse, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: resSolConfidentialityDisclaimerSubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentAgreeStatement, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC7WelshResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC1AResponseDocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentSolicitorName, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListA, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListB, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListC, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListD, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondentTaskListE, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC7WelshResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC1ADocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftC8ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalC8ResponseDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPrivateReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToPrivateTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsPublicReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: markAsRestrictedReason, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseSecurityClassification, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reasonsToRestrictTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: assignedUserDetailsText, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: c2DocumentBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: otherApplicationsBundle, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: uploadedDateTime, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: author, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: payment, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: partyType, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: selectedParties, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: selectedAdditionalApplicationsBundle, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"c2DocumentBundle":{"enabled": false},"otherApplicationsBundle":{"enabled": false},"uploadedDateTime":{"enabled": false},"author":{"enabled": false},"payment":{"enabled": false},"partyType":{"enabled": false},"selectedParties":{"enabled": false}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isAdditionalApplicationReviewed, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDocsDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDecisionYesOrNo, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docToBeReviewed, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: docLabel, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: reviewDoc, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalProfUploadDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: cafcassUploadDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtStaffUploadDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: bulkScannedDocListConfTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: restrictedDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: citizenUploadedDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: courtNavUploadedDocListDocTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: chooseSendOrReply, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageObject, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageContent, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: openMessages, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: closedMessages, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: externalMessageAttachDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReply, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeForSendAndReply, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messages, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyDynamicList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: respondToMessage, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: messageReplyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: replyMessageObject, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sendMessageObject, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: internalMessageAttachDocsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isSpecificGateKeeperNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isJudgeOrLegalAdviserGatekeeping, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: judgeName, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: legalAdvisorList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: gatekeepingDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationScreen1, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sentDocumentPlaceHolder, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: pd36qLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: noticeOfSafetySupportLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangementsLetter, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocuments, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: serviceOfApplicationHeader, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: finalServedApplicationDetailsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeToRespondentOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRecipientsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherParties, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassServedOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruServedOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassCymruEmail, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailId, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeoplePresentInCaseFlag, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServingRespondentsOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaIsOrderListEmpty, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsCA, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCitizenServingRespondentsOptionsDA, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isConfidential, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: proceedToServing, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeLocalAuthorityYesOrNo, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaServeC8ToLocalAuthorityYesOrNo, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaDocumentDynamicListForLa, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaLaEmailAddress, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: missingAddressWarningText, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isC8CheckNeeded, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: responsibleForService, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isOccupationOrderSelected, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isApplicantRepresented, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: productHearingBundleOn, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confirmRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaApplicantsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaRespondentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherPeopleList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailOptionChecked, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailOptionChecked, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaCafcassEmailAddressList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: soaOtherEmailAddressList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalDocumentsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipients, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodAdditionalRecipientsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodDocumentsCheckOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodSolicitorServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodCitizenServingRespondentsOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodUnServedPack, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: servedDocumentsDetailsList, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: sodServeToRespondentOptions, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: canDocumentsBeServed, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepChooseParties, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: solStopRepDisclaimer, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceAddRecipient, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForApplication, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceForOrder, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: stmtOfServiceWhatWasServed, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialityDisclaimerSubmit, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: submitAndPayDownloadApplicationWelshLink, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allocatedJudgeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: refugeCase, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseStatus, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: confidentialDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: urgencyDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: applicationTypeDetails, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarm, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.m.type.ComplexTypeMappingGenerator property: typesOfHarmRevised, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: allegationOfHarmRevised, mapping: {"properties":{"classification":{"type" : "keyword"},"value":{"properties":{"typesOfHarmRevised":{"type" : "keyword"}}}}} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: specialArrangement, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: summaryTabForOrderAppliedFor, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingsForSummaryTab, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: dateOfSubmission, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: otherProceedingEmptyTable, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: caseClosedDate, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentServiceRequestReferenceNumber, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: tsPaymentStatus, mapping: {"type" : "keyword"} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskName, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpWaTaskToBeCreated, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: awpHwfRefNo, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: additionalApplicationsBundleId, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: draftOrderDocWelsh, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: withDrawApplicationData, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: isWithdrawRequestSent, mapping: {"enabled": false} -2026-02-06T16:26:19.923 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.elastic.mapping.CaseMappingGenerator property: [STATE], mapping: {"type" : "keyword"} -2026-02-06T16:26:19.924 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of most recent index for alias prlapps_cases -2026-02-06T16:26:19.927 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient found following indexes for alias prlapps_cases: [prlapps_cases-000001] -2026-02-06T16:26:19.927 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient upsert mapping of index prlapps_cases-000001 -2026-02-06T16:26:20.072 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient mapping upserted: true -2026-02-06T16:26:20.073 INFO [SimpleAsyncTaskExecutor-1] u.g.h.c.d.s.e.client.HighLevelCCDElasticClient Closing the ES REST client -2026-02-06T16:26:31.370 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:31.371 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 1 -2026-02-06T16:26:31.521 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:31.521 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:31.52073638,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:40 -2026-02-06T16:26:32.004 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:32.017 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:32.018 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.017355391,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:8 -2026-02-06T16:26:32.044 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:32.057 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:32.058 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.057524007,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 -2026-02-06T16:26:32.591 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:32.593 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:32.605 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:32.606 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.60562145,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:10 -2026-02-06T16:26:32.608 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:32.609 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:32.608651113,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:11 -2026-02-06T16:26:34.246 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:34.254 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:34.254 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:34.254453898,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:26:38.496 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET -2026-02-06T16:26:38.535 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:39.029 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:39.041 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:39.041 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:39.041010195,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 -2026-02-06T16:26:40.516 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. -2026-02-06T16:26:40.521 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. -2026-02-06T16:26:40.522 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. -2026-02-06T16:26:40.523 WARN [*** ccdDefinitionStoreApi] c.f.j.d.PropertyNamingStrategy$SnakeCaseStrategy PropertyNamingStrategy.SnakeCaseStrategy is used but it has been deprecated due to risk of deadlock. Consider using PropertyNamingStrategies.SnakeCaseStrategy instead. See https://github.com/FasterXML/jackson-databind/issues/2715 for more details. -2026-02-06T16:26:47.487 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET -2026-02-06T16:26:47.489 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:47.795 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:47.815 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:47.815 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:47.814811749,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 -2026-02-06T16:26:48.880 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/case-types/PRLAPPS/event-triggers/testingSupportDummyAdminCreateNoc method: GET -2026-02-06T16:26:48.881 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:48.897 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:48.903 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:48.903 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:48.903343191,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:4 -2026-02-06T16:26:50.812 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST -2026-02-06T16:26:50.813 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:50.866 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:50.873 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:50.873 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:50.873429679,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:26:51.552 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET -2026-02-06T16:26:51.554 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:51.842 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:51.848 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:51.848 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:51.848605016,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:26:55.984 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST -2026-02-06T16:26:55.985 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:56.010 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:56.020 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:56.020 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:56.020012547,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 -2026-02-06T16:26:57.219 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/cases method: POST -2026-02-06T16:26:57.219 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:57.247 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:57.256 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:57.256 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:57.256077262,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 -2026-Feb-06 16:26:57.326 INFO [http-nio-4044-exec-1] o.s.w.s.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2026-Feb-06 16:26:57.328 INFO [http-nio-4044-exec-1] o.s.w.s.DispatcherServlet - Completed initialization in 2 ms -2026-Feb-06 16:26:57.775 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Calling org service to update the org address .. for case id 1770395217318492 -2026-Feb-06 16:26:57.776 INFO [*** prl-cos-api] u.g.h.r.p.s.SystemUserService - Fetching system user token -2026-Feb-06 16:26:59.450 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Called org service to update the org address .. for case id 1770395217318492 -2026-Feb-06 16:26:59.451 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:26:59.451 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Final-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:26:59.451 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-CON-ENG-C8-Final-V2.docx -2026-02-06T16:26:59.504 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:26:59.520 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:26:59.521 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:26:59.520303771,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 -2026-Feb-06 16:27:01.334 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Final-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:27:01.334 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:27:01.338 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Draft-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:27:01.338 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-CON-ENG-C8-Draft-V2.docx -2026-02-06T16:27:01.379 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:01.396 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:01.396 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:01.396343768,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 -2026-Feb-06 16:27:03.580 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-ENG-C8-Draft-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-ENG-C100-Final-V3.docx -2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-Final-V3.docx document for case id 1770395217318492 -2026-Feb-06 16:27:03.581 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-APP-ENG-C100-Final-V3.docx -2026-02-06T16:27:03.624 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:03.641 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:03.641 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:03.641224618,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:11 -2026-Feb-06 16:27:05.846 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-Final-V3.docx document for case id 1770395217318492 -2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-ENG-C100-DRAFT-V3.docx -2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-DRAFT-V3.docx document for case id 1770395217318492 -2026-Feb-06 16:27:05.847 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generating document for FL-PRL-APP-ENG-C100-DRAFT-V3.docx -2026-02-06T16:27:05.893 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:05.913 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:05.914 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:05.913367184,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:15 -2026-Feb-06 16:27:08.577 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-ENG-C100-DRAFT-V3.docx document for case id 1770395217318492 -2026-Feb-06 16:27:08.577 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:27:08.577 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Final-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:27:10.021 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Final-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:27:10.022 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:27:10.022 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Draft-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:27:11.457 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-CON-WEL-C8-Draft-V2.docx document for case id 1770395217318492 -2026-Feb-06 16:27:11.458 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:27:11.458 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-WEL-C100-Final-V3.docx -2026-Feb-06 16:27:11.458 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Final-V3.docx document for case id 1770395217318492 -2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Final-V3.docx document for case id 1770395217318492 -2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.s.d.C100DocumentTemplateFinderService - generate v3 FL-PRL-APP-WEL-C100-Draft-V3.docx -2026-Feb-06 16:27:13.699 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Draft-V3.docx document for case id 1770395217318492 -2026-Feb-06 16:27:17.588 INFO [*** prl-cos-api] u.g.h.r.p.s.d.DocumentGenService - Generated the FL-PRL-APP-WEL-C100-Draft-V3.docx document for case id 1770395217318492 -2026-02-06T16:27:18.224 INFO [*** ***CFT lib***] u.g.h.r.c.d.s.impl.DocumentManagementServiceImpl Case Type Id is PRLAPPS and validation result is true -2026-02-06T16:27:18.225 INFO [*** ***CFT lib***] u.g.h.r.c.d.s.impl.DocumentManagementServiceImpl JurisdictionI Id is PRIVATELAW and validation result is true -2026-02-06T16:27:18.225 INFO [*** ***CFT lib***] u.g.h.r.c.d.s.impl.DocumentManagementServiceImpl Permission is ATTACH and validation result is true -2026-02-06T16:27:20.158 INFO [*** ***CFT lib***] u.g.h.r.c.d.auditlog.LoggerAuditRepository LA-CDAM dateTime:2026-02-06T16:27:20.121058589,operationType:PatchMetaDataOnDocuments,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:ccd_data,endpointCalled:PATCH /cases/documents/attachToCase,operationalOutcome:200,documentId:91cdf6ee-2ccb-442f-bb90-cd29bf4da451,3fdfb365-9fce-48b6-9883-9f3338002784,f2c107f5-7134-4fc3-9d6c-35fe424f3579,aaf932bc-d841-48e4-be2c-a351453d71d6,25162489-06ef-4b04-8335-8c8e4c76c8c4,e3cf7a7f-a6b0-4228-a5a7-e8e73d59bd70,98526a9a-d159-4299-9808-0a293110b7b4,bc88fa81-3ee6-450f-88f8-e4864a7b94c6,caseId:1770395217318492 -2026-02-06T16:27:20.334 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/event-triggers/internal-update-all-tabs/token method: GET -2026-02-06T16:27:20.364 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:20.498 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET -2026-02-06T16:27:20.499 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 2 -2026-02-06T16:27:20.575 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:20.575 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:20.575244266,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:10 -2026-Feb-06 16:27:20.765 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getOtherChildNotInTheCaseTable()--->start -2026-Feb-06 16:27:20.765 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->start -2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->end -2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndRespondentRelationsTable()--->start -2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndRespondentRelationsTable()--->End -2026-Feb-06 16:27:20.766 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->Start -2026-Feb-06 16:27:20.767 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->End -2026-Feb-06 16:27:20.783 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabService - application tab data v2 & v3 -2026-Feb-06 16:27:20.787 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-02-06T16:27:20.795 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events method: POST -2026-02-06T16:27:20.795 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:20.821 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET -2026-02-06T16:27:20.828 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:20.828 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:20.828017504,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:5 -2026-02-06T16:27:21.125 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:21.125329948,operationType:Update case,caseId:1770395217318492,idamId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,invokingService:prl-cos-api,endpointCalled:POST /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:internal-update-all-tabs -2026-Feb-06 16:27:21.136 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getOtherChildNotInTheCaseTable()--->start -2026-Feb-06 16:27:21.136 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->start -2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->end -2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndRespondentRelationsTable()--->start -2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndRespondentRelationsTable()--->End -2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->Start -2026-Feb-06 16:27:21.137 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->End -2026-Feb-06 16:27:21.142 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabService - application tab data v2 & v3 -2026-Feb-06 16:27:21.142 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-02-06T16:27:21.221 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:21.239 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:21.240 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.239304096,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:14 -2026-Feb-06 16:27:21.286 INFO [*** prl-cos-api] u.g.h.r.p.s.c.CcdDataStoreService - CaseID: 1770395217318492 removing [CREATOR] case roles from user 930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf -2026-02-06T16:27:21.296 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /case-users method: DELETE -2026-02-06T16:27:21.297 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:21.322 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/query method: POST -2026-02-06T16:27:21.324 INFO [*** ***CFT lib***] u.g.h.r.r.c.endpoints.QueryAssignmentController Inside Single query request method -2026-02-06T16:27:21.339 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:21.339 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.339108526,operationType:Search assignments,assignmentSize:0,invokingService:ccd_data,endpointCalled:/am/role-assignments/query,operationalOutcome:200,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:14 -2026-02-06T16:27:21.345 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:21.344670748,operationType:Remove Case-Assigned Users and Roles,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:DELETE /case-users,operationalOutcome:200,idamIdOfTarget:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,targetCaseRoles:[CREATOR] -2026-Feb-06 16:27:21.345 INFO [*** prl-cos-api] u.g.h.r.p.s.c.CcdDataStoreService - CaseID: 1770395217318492 removed [CREATOR] case roles from user 930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf -2026-02-06T16:27:21.349 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /cases/1770395217318492/supplementary-data method: POST -2026-02-06T16:27:21.350 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:21.502 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/event-triggers/internal-update-all-tabs/token method: GET -2026-02-06T16:27:21.503 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:21.534 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET -2026-02-06T16:27:21.545 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:21.545 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.544962263,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:8 -2026-02-06T16:27:21.612 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events method: POST -2026-02-06T16:27:21.612 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:21.629 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET -2026-02-06T16:27:21.640 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:21.640 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.639913449,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:7 -2026-02-06T16:27:21.887 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:21.88743462,operationType:Update case,caseId:1770395217318492,idamId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,invokingService:prl-cos-api,endpointCalled:POST /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:internal-update-all-tabs -2026-02-06T16:27:21.926 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/event-triggers/internal-update-all-tabs/token method: GET -2026-02-06T16:27:21.927 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:21.963 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET -2026-02-06T16:27:21.971 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:21.971 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:21.970808398,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:5 -2026-02-06T16:27:22.069 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:22.086 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:22.086 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:22.085983439,operationType:Get assignments by Actor,assignmentSize:4,invokingService:prl_cos_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:13 -2026-Feb-06 16:27:22.089 ERROR [*** prl-cos-api] u.g.h.r.p.s.TaskListService - Error regenerating the document Cannot invoke "uk.gov.hmcts.reform.ccd.client.model.CaseDetails.getState()" because "caseDetails" is null -2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getOtherChildNotInTheCaseTable()--->start -2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->start -2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndApplicantsRelationTable()--->end -2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - getChildAndRespondentRelationsTable()--->start -2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndRespondentRelationsTable()--->End -2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->Start -2026-Feb-06 16:27:22.105 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabServiceHelper - -->getChildAndOtherPeopleRelationsTable()--->End -2026-Feb-06 16:27:22.109 INFO [*** prl-cos-api] u.g.h.r.p.s.ApplicationsTabService - application tab data v2 & v3 -2026-Feb-06 16:27:22.109 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - Case ID: 1770395217318492 CaseTypeOfApplication = C100 -2026-02-06T16:27:22.112 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized prl_cos_api for endpoint: /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events method: POST -2026-02-06T16:27:22.113 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:22.132 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f method: GET -2026-02-06T16:27:22.142 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=540b6fed-6454-4ea2-bf23-06ab4b113e2f. Roles=[caseworker-privatelaw-systemupdate, caseworker, caseworker-privatelaw, pui-organisation-manager, prd-admin, idam-service-account]. -2026-02-06T16:27:22.142 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:22.142069915,operationType:Get assignments by Actor,assignmentSize:29,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/540b6fed-6454-4ea2-bf23-06ab4b113e2f,operationalOutcome:200,actorId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,authenticatedUserId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,responseTime:7 -2026-02-06T16:27:22.376 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:22.376734019,operationType:Update case,caseId:1770395217318492,idamId:540b6fed-6454-4ea2-bf23-06ab4b113e2f,invokingService:prl-cos-api,endpointCalled:POST /caseworkers/540b6fed-6454-4ea2-bf23-06ab4b113e2f/jurisdictions/PRIVATELAW/case-types/PRLAPPS/cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:internal-update-all-tabs -2026-02-06T16:27:22.445 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:22.445246856,operationType:Create case,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:POST /case-types/PRLAPPS/cases,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:testingSupportDummyAdminCreateNoc -2026-02-06T16:27:22.491 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492 method: GET -2026-02-06T16:27:22.492 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:22.515 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:22.525 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:22.526 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:22.525762251,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:8 -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts -2026-02-06T16:27:23.963 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:27:23.963146803,operationType:Case Accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW -2026-02-06T16:27:24.157 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:24.169 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:24.170 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:24.169605708,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:8 -2026-02-06T16:27:33.225 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:33.240 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:33.240 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:33.23981519,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 -2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492/event-triggers/awaitingInformation method: GET -2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/profile method: GET -2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:33.352 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:33.356 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:33.362 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:33.362 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:33.362513002,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:27:33.373 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:33.381 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:33.381 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:33.381179538,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:6 -2026-02-06T16:27:37.337 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:27:37.344 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:37.344 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:27:37.344276462,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:27:53.779 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST -2026-02-06T16:27:53.779 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:27:53.853 ERROR [*** ccdDataStoreApi] u.g.h.ccd.endpoint.exceptions.RestExceptionHandleruk.gov.hmcts.ccd.endpoint.exceptions.ApiException: Unable to proceed because there are one or more callback Errors or Warnings - at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.callbacks.CallbackService.validateCallbackErrorsAndWarnings(CallbackService.java:201) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at ccd-data-store-api//org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:359) - at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at ccd-data-store-api//org.springframework.retry.annotation.AnnotationAwareRetryOperationsInterceptor.invoke(AnnotationAwareRetryOperationsInterceptor.java:165) - at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at ccd-data-store-api//org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:727) - at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.callbacks.CallbackService$$SpringCGLIB$$0.validateCallbackErrorsAndWarnings() - at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.stdapi.CallbackInvoker.invokeMidEventCallback(CallbackInvoker.java:198) - at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.createevent.MidEventCallback.invoke(MidEventCallback.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at ccd-data-store-api//org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:359) - at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at ccd-data-store-api//org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:380) - at ccd-data-store-api//org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at ccd-data-store-api//org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at ccd-data-store-api//org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:727) - at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.createevent.MidEventCallback$$SpringCGLIB$$0.invoke() - at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.validate.AuthorisedValidateCaseFieldsOperation.callMidEventCallback(AuthorisedValidateCaseFieldsOperation.java:94) - at ccd-data-store-api//uk.gov.hmcts.ccd.domain.service.validate.AuthorisedValidateCaseFieldsOperation.validateCaseDetails(AuthorisedValidateCaseFieldsOperation.java:67) - at ccd-data-store-api//uk.gov.hmcts.ccd.v2.external.controller.CaseDataValidatorController.validate(CaseDataValidatorController.java:68) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at ccd-data-store-api//org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:257) - at ccd-data-store-api//org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:190) - at ccd-data-store-api//org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at ccd-data-store-api//org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:986) - at ccd-data-store-api//org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:891) - at ccd-data-store-api//org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at ccd-data-store-api//org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1088) - at ccd-data-store-api//org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:978) - at ccd-data-store-api//org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at ccd-data-store-api//org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at ccd-data-store-api//jakarta.servlet.http.HttpServlet.service(HttpServlet.java:653) - at ccd-data-store-api//org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at ccd-data-store-api//jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) - at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at ccd-data-store-api//org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at ccd-data-store-api//uk.gov.hmcts.ccd.customheaders.CustomHeadersFilter.doFilter(CustomHeadersFilter.java:35) - at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at ccd-data-store-api//org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101) - at ccd-data-store-api//org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - Unable to proceed because there are one or more callback Errors or Warnings -2026-02-06T16:28:06.153 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /case-types/PRLAPPS/validate method: POST -2026-02-06T16:28:06.153 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:06.210 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:28:06.223 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:06.223 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:06.222713952,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 -2026-02-06T16:28:08.447 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /cases/1770395217318492/events method: POST -2026-02-06T16:28:08.447 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:08.476 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:28:08.486 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:08.487 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:08.486589744,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 -2026-Feb-06 16:28:08.618 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - State from callbackRequest AWAITING_INFORMATION -2026-Feb-06 16:28:08.618 INFO [*** prl-cos-api] u.g.h.r.p.u.CaseUtils - State Awaiting information -2026-02-06T16:28:08.867 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:28:08.867383153,operationType:Update case,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:POST /cases/1770395217318492/events,operationalOutcome:201,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:awaitingInformation -2026-02-06T16:28:08.923 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492 method: GET -2026-02-06T16:28:08.923 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:08.937 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:28:08.944 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:08.944 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:08.944685506,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:28:09.220 INFO [*** ccdDataStoreApi] u.g.h.c.d.s.a.AuthorisedGetCaseViewOperation No authorised triggers for caseReference=1770395217318492 caseType=PRLAPPS version=21 caseState=AWAITING_INFORMATION,caseTypeACLs=[ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=CRU}, ACL{accessProfile='citizen', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-judge', crud=RU}, ACL{accessProfile='caseworker-privatelaw-la', crud=RU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRUD}, ACL{accessProfile='courtnav', crud=CRU}, ACL{accessProfile='caseworker-caa', crud=CRUD}, ACL{accessProfile='caseworker-approver', crud=CRUD}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-ras-validation', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-externaluser-viewonly', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}, ACL{accessProfile='hearing-centre-team-leader', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-cafcass', crud=R}], caseStateACLs=[ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=R}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=R}, ACL{accessProfile='citizen', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=R}, ACL{accessProfile='caseworker-privatelaw-la', crud=R}, ACL{accessProfile='caseworker-privatelaw-judge', crud=R}, ACL{accessProfile='caseworker-caa', crud=R}, ACL{accessProfile='caseworker-approver', crud=R}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}] userRoles=[AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=GS_profile, caseAccessCategories=null), AccessProfile(readOnly=false, securityClassification=PUBLIC, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null), AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null)] -2026-02-06T16:28:09.230 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:28:09.230854485,operationType:Case Accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW -2026-02-06T16:28:09.413 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:28:09.420 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:09.421 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:09.420681782,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:6 -2026-02-06T16:28:28.348 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:28:28.365 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:28:28.366 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:28:28.365423335,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:12 -2026-02-06T16:30:14.052 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized wa_task_management_api for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:30:14.053 INFO [*** ***CFT lib***] u.g.h.reform.roleassignment.oidc.IdamRepository generating Bearer Token, current size of cache: 2 -2026-02-06T16:30:14.171 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:14.171 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:14.170858963,operationType:Get assignments by Actor,assignmentSize:4,invokingService:wa_task_management_api,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:14 -2026-02-06T16:30:26.044 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET -2026-02-06T16:30:26.045 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:26.376 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:30:26.396 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:26.396 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:26.395742055,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:15 -2026-02-06T16:30:26.762 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/searchCases method: POST -2026-02-06T16:30:26.762 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:26.762 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/case-types/PRLAPPS/work-basket-inputs method: GET -2026-02-06T16:30:26.763 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:26.774 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:30:26.779 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:26.779 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:26.779321384,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:4 -2026-02-06T16:30:26.888 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:30:26.895 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:26.895 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:26.895388896,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:30:28.158 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:30:28.157991761,operationType:Search case,caseId:1770395217318492,1770388851775739,1770384481537623,1770384057970323,1770383705728620,1770383008867307,1770380625874922,1770380412542468,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:POST /internal/searchCases,operationalOutcome:200 -2026-02-06T16:30:29.664 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:30:29.674 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:30:29.674 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:30:29.674311036,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 -2026-02-06T16:31:19.059 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized xui_webapp for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:31:19.066 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:19.066 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:19.066357749,operationType:Get assignments by Actor,assignmentSize:4,invokingService:xui_webapp,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:31:19.331 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492 method: GET -2026-02-06T16:31:19.331 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:19.348 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:31:19.355 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:19.356 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:19.355587659,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:6 -2026-02-06T16:31:19.619 INFO [*** ccdDataStoreApi] u.g.h.c.d.s.a.AuthorisedGetCaseViewOperation No authorised triggers for caseReference=1770395217318492 caseType=PRLAPPS version=21 caseState=AWAITING_INFORMATION,caseTypeACLs=[ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=CRU}, ACL{accessProfile='citizen', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-judge', crud=RU}, ACL{accessProfile='caseworker-privatelaw-la', crud=RU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRUD}, ACL{accessProfile='courtnav', crud=CRU}, ACL{accessProfile='caseworker-caa', crud=CRUD}, ACL{accessProfile='caseworker-approver', crud=CRUD}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-ras-validation', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-externaluser-viewonly', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}, ACL{accessProfile='hearing-centre-team-leader', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-cafcass', crud=R}], caseStateACLs=[ACL{accessProfile='caseworker-privatelaw-systemupdate', crud=CRU}, ACL{accessProfile='caseworker-privatelaw-superuser', crud=R}, ACL{accessProfile='caseworker-wa-task-configuration', crud=R}, ACL{accessProfile='caseworker-privatelaw-solicitor', crud=R}, ACL{accessProfile='citizen', crud=R}, ACL{accessProfile='GS_profile', crud=R}, ACL{accessProfile='caseworker-privatelaw-courtadmin', crud=R}, ACL{accessProfile='caseworker-privatelaw-la', crud=R}, ACL{accessProfile='caseworker-privatelaw-judge', crud=R}, ACL{accessProfile='caseworker-caa', crud=R}, ACL{accessProfile='caseworker-approver', crud=R}, ACL{accessProfile='caseworker-privatelaw-readonly', crud=R}] userRoles=[AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=GS_profile, caseAccessCategories=null), AccessProfile(readOnly=false, securityClassification=PUBLIC, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null), AccessProfile(readOnly=true, securityClassification=PRIVATE, accessProfile=caseworker-privatelaw-courtadmin, caseAccessCategories=null)] -2026-02-06T16:31:19.630 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:19.630649321,operationType:Case Accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW -2026-02-06T16:31:19.774 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /internal/cases/1770395217318492/events/111 method: GET -2026-02-06T16:31:19.774 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:19.803 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:31:19.812 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:19.812 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:19.812724187,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:7 -2026-02-06T16:31:19.965 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:19.965191808,operationType:View case history,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /internal/cases/1770395217318492/events/111,operationalOutcome:200,caseType:PRLAPPS,jurisdiction:PRIVATELAW,eventSelected:awaitingInformation -2026-02-06T16:31:20.710 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /categoriesAndDocuments/1770395217318492 method: GET -2026-02-06T16:31:20.711 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:20.732 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:31:20.741 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /getLinkedCases/1770395217318492 method: GET -2026-02-06T16:31:20.741 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:20.744 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:20.744 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:20.744326549,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:10 -2026-02-06T16:31:20.766 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:31:20.784 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:20.784 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:20.784210679,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:9 -2026-02-06T16:31:20.892 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:20.892774259,operationType:Get Linked Cases,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /getLinkedCases/1770395217318492,operationalOutcome:200 -2026-02-06T16:31:20.969 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:20.969797052,operationType:Categories and documents accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /categoriesAndDocuments/1770395217318492,operationalOutcome:200 -2026-02-06T16:31:21.048 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /categoriesAndDocuments/1770395217318492 method: GET -2026-02-06T16:31:21.049 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:21.068 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:31:21.074 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:21.075 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:21.07463594,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:5 -2026-02-06T16:31:21.236 INFO [*** ccdDataStoreApi] uk.gov.hmcts.ccd.auditlog.LoggerAuditRepository CLA-CCD dateTime:2026-02-06T16:31:21.236036842,operationType:Categories and documents accessed,caseId:1770395217318492,idamId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,invokingService:xuiwebapp,endpointCalled:GET /categoriesAndDocuments/1770395217318492,operationalOutcome:200 -2026-02-06T16:31:25.013 INFO [*** ccdDataStoreApi] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_gw for endpoint: /aggregated/caseworkers/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf/jurisdictions method: GET -2026-02-06T16:31:25.014 INFO [*** ccdDataStoreApi] u.g.h.ccd.security.JwtGrantedAuthoritiesConverter JwtGrantedAuthoritiesConverter retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:26.224 INFO [*** ***CFT lib***] u.g.h.r.authorisation.filters.ServiceAuthFilter service authorized ccd_data for endpoint: /am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf method: GET -2026-02-06T16:31:26.243 INFO [*** ***CFT lib***] u.g.hmcts.reform.roleassignment.util.SecurityUtils SecurityUtils retrieved user info from idamRepository. User Id=930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf. Roles=[caseworker, caseworker-privatelaw, cwd-user, staff-admin]. -2026-02-06T16:31:26.244 INFO [*** ***CFT lib***] u.g.h.r.r.auditlog.LoggerAuditRepository LA-AM-RAS dateTime:2026-02-06T16:31:26.243460141,operationType:Get assignments by Actor,assignmentSize:4,invokingService:ccd_data,endpointCalled:/am/role-assignments/actors/930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,operationalOutcome:200,actorId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,authenticatedUserId:930a5478-3b1d-4fed-bf9d-fdfb2f9e9eaf,responseTime:13 diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 9e8880dc5ad..b79557e7b19 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -24,10 +24,7 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; -import static uk.gov.hmcts.reform.prl.util.TestConstants.AUTHORISATION_HEADER; -import static uk.gov.hmcts.reform.prl.util.TestConstants.SERVICE_AUTHORISATION_HEADER; -import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_AUTH_TOKEN; -import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_SERVICE_AUTH_TOKEN; +import static uk.gov.hmcts.reform.prl.util.TestConstants.*; @Slf4j @@ -97,24 +94,6 @@ public void testSubmitAwaitingInformationUnauthorized() throws Exception { .andReturn(); } - @Test - public void testPopulateHeaderSuccess() throws Exception { - String url = "/populate-header-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - - when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - - mockMvc.perform( - post(url) - .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) - .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) - .accept(APPLICATION_JSON) - .contentType(APPLICATION_JSON) - .content(jsonRequest)) - .andExpect(status().isOk()) - .andReturn(); - } - @Test public void testPopulateHeaderUnauthorized() throws Exception { String url = "/populate-header-awaiting-information"; From a5d6134b99353f605a0c51c977917d8625b5dcd7 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Wed, 25 Feb 2026 11:45:14 +0000 Subject: [PATCH 29/42] FPVTL-2022 review comments --- ...gInformationControllerIntegrationTest.java | 5 +- .../services/AwaitingInformationService.java | 7 -- .../AwaitingInformationControllerTest.java | 2 +- .../AwaitingInformationServiceTest.java | 75 ------------------- 4 files changed, 5 insertions(+), 84 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index b79557e7b19..93958c4bd5f 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -24,7 +24,10 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; -import static uk.gov.hmcts.reform.prl.util.TestConstants.*; +import static uk.gov.hmcts.reform.prl.util.TestConstants.AUTHORISATION_HEADER; +import static uk.gov.hmcts.reform.prl.util.TestConstants.SERVICE_AUTHORISATION_HEADER; +import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_AUTH_TOKEN; +import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_SERVICE_AUTH_TOKEN; @Slf4j diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 6b77819d266..d265eaa48e3 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -13,11 +13,9 @@ import java.time.LocalDate; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; import java.util.Map; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @@ -47,11 +45,6 @@ public Map addToCase(CallbackRequest callbackRequest) { .state(AWAITING_INFORMATION.getLabel()) .build() ); - Map awaitingInformationDetails = new HashMap<>(); - awaitingInformationDetails.put("reviewByDate", caseDataUpdated.get("reviewByDate")); - awaitingInformationDetails.put("awaitingInformationReasonList", caseDataUpdated.get("awaitingInformationReasonList")); - caseDataUpdated.put(AWAITING_INFORMATION_DETAILS,awaitingInformationDetails); - CaseUtils.setCaseState(callbackRequest, caseDataUpdated); return caseDataUpdated; } diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 676c7e24667..16aa1384a43 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -31,7 +31,7 @@ import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.times; +import static org.mockito.Mockito. times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index 24007b32f6a..6b43405c9dd 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -18,14 +18,12 @@ import java.util.List; import java.util.Map; -import static junit.framework.TestCase.assertNull; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.when; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; @RunWith(MockitoJUnitRunner.Silent.class) @@ -220,79 +218,6 @@ public void testAddToCaseWithMultipleCaseDataEntries() { assertTrue(result.containsKey(CASE_STATUS)); } - @Test - public void awaitingInformationDetailsContainsBothReviewDateAndReasonList() { - // Given - LocalDate reviewDate = LocalDate.now().plusDays(10); - caseDataMap.put("reviewByDate", reviewDate); - caseDataMap.put("awaitingInformationReasonList", AwaitingInformationReasonEnum.applicantFurtherInformation); - when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) - .thenReturn(awaitingInformation); - - // When - Map result = awaitingInformationService.addToCase(callbackRequest); - - // Then - assertNotNull(result); - assertTrue(result.containsKey(AWAITING_INFORMATION_DETAILS)); - Map awaitingInfoDetails = (Map) result.get(AWAITING_INFORMATION_DETAILS); - assertNotNull(awaitingInfoDetails); - assertEquals(2, awaitingInfoDetails.size()); - assertEquals(reviewDate, awaitingInfoDetails.get("reviewByDate")); - assertEquals( - AwaitingInformationReasonEnum.applicantFurtherInformation, - awaitingInfoDetails.get("awaitingInformationReasonList") - ); - } - - - @Test - public void awaitingInformationDetailsNotCreatedWhenKeysNotPresent() { - // Given - // caseDataMap does not contain reviewByDate or awaitingInformationReasonList - when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) - .thenReturn(awaitingInformation); - - // When - Map result = awaitingInformationService.addToCase(callbackRequest); - - // Then - assertNotNull(result); - assertTrue(result.containsKey(AWAITING_INFORMATION_DETAILS)); - Map awaitingInfoDetails = (Map) result.get(AWAITING_INFORMATION_DETAILS); - assertNotNull(awaitingInfoDetails); - assertEquals(2, awaitingInfoDetails.size()); - assertNull(awaitingInfoDetails.get("reviewByDate")); - assertNull(awaitingInfoDetails.get("awaitingInformationReasonList")); - } - - @Test - public void awaitingInformationDetailsWithDifferentReasonEnums() { - // Given - AwaitingInformationReasonEnum[] reasons = { - AwaitingInformationReasonEnum.dwpHmrcWhereaboutsUnknown, - AwaitingInformationReasonEnum.applicantFurtherInformation, - AwaitingInformationReasonEnum.applicantClarifyConfidentialDetails, - AwaitingInformationReasonEnum.respondentFurtherInformation - }; - - for (AwaitingInformationReasonEnum reason : reasons) { - caseDataMap.put("reviewByDate", LocalDate.now().plusDays(10)); - caseDataMap.put("awaitingInformationReasonList", reason); - when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) - .thenReturn(awaitingInformation); - - // When - Map result = awaitingInformationService.addToCase(callbackRequest); - - // Then - assertNotNull(result); - assertTrue(result.containsKey(AWAITING_INFORMATION_DETAILS)); - Map awaitingInfoDetails = (Map) result.get(AWAITING_INFORMATION_DETAILS); - assertNotNull(awaitingInfoDetails); - assertEquals(reason, awaitingInfoDetails.get("awaitingInformationReasonList")); - } - } } From ac388822492b9d59ccd82e5e770533a253b8027a Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Thu, 26 Feb 2026 11:24:51 +0000 Subject: [PATCH 30/42] FPVTL-2022 review comments --- ...gInformationControllerIntegrationTest.java | 42 ++++++++++++++++ .../AwaitingInformationController.java | 10 ++-- .../AwaitingInformationControllerTest.java | 48 ++++++++++++++++--- 3 files changed, 89 insertions(+), 11 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 93958c4bd5f..bc3557b35c6 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -14,16 +14,24 @@ import org.springframework.test.web.servlet.MockMvc; import org.springframework.web.context.WebApplicationContext; import uk.gov.hmcts.reform.prl.ResourceLoader; +import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; +import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; +import java.time.LocalDate; +import java.util.HashMap; +import java.util.Map; + import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import static org.springframework.http.MediaType.APPLICATION_JSON; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; import static uk.gov.hmcts.reform.prl.util.TestConstants.AUTHORISATION_HEADER; import static uk.gov.hmcts.reform.prl.util.TestConstants.SERVICE_AUTHORISATION_HEADER; import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_AUTH_TOKEN; @@ -61,12 +69,29 @@ public void setUp() { objectMapper.registerModule(new ParameterNamesModule()); } + private Map createMockCaseDataWithAwaitingInformation() { + Map caseData = new HashMap<>(); + caseData.put("id", 12345678L); + + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + .build(); + + caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); + caseData.put(CASE_STATUS, "Awaiting information"); + + return caseData; + } + @Test public void testSubmitAwaitingInformationSuccess() throws Exception { String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); mockMvc.perform( post(url) @@ -120,6 +145,9 @@ public void testValidateAwaitingInformationSuccess() throws Exception { String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); + mockMvc.perform( post(url) .accept(APPLICATION_JSON) @@ -136,6 +164,8 @@ public void testSubmitAwaitingInformationWithCorrectHeaders() throws Exception { when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)) .thenReturn(true); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); mockMvc.perform( post(url) @@ -172,6 +202,9 @@ public void testValidateAwaitingInformationWithValidJson() throws Exception { String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); + mockMvc.perform( post(url) .header("Accept", APPLICATION_JSON.toString()) @@ -192,6 +225,8 @@ public void testSubmitAwaitingInformationWithDifferentTokens() throws Exception when(authorisationService.isAuthorized(token1, serviceToken1)).thenReturn(true); when(authorisationService.isAuthorized(token2, serviceToken2)).thenReturn(false); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); // First request with valid tokens mockMvc.perform( @@ -224,6 +259,8 @@ public void testAllEndpointsSequentially() throws Exception { String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); // Test submit endpoint mockMvc.perform( @@ -293,6 +330,8 @@ public void testSubmitAwaitingInformationResponseContentType() throws Exception String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); mockMvc.perform( post(url) @@ -310,6 +349,9 @@ public void testValidateAwaitingInformationResponseContentType() throws Exceptio String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); + mockMvc.perform( post(url) .accept(APPLICATION_JSON) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index 94ce13abec2..ce10dc2bf47 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -29,6 +29,7 @@ import java.util.Map; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.INVALID_CLIENT; @Slf4j @@ -66,13 +67,14 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Child details are fetched"), @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) - public CallbackResponse validateUrgentCaseCreation( - @RequestBody CallbackRequest callbackRequest - ) { + public CallbackResponse validateUrgentCaseCreation(@RequestBody CallbackRequest callbackRequest) { if (featureToggleService.isAwaitingInformationEnabled()) { + Map caseDataUpdated = awaitingInformationService.addToCase(callbackRequest); + AwaitingInformation awaitingInformation = objectMapper.convertValue( - callbackRequest.getCaseDetails().getData(), AwaitingInformation.class); + caseDataUpdated.get(AWAITING_INFORMATION_DETAILS), AwaitingInformation.class); + List errorList = awaitingInformationService.validate(awaitingInformation); return CallbackResponse.builder() diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 16aa1384a43..3741bd93d0b 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -31,9 +31,10 @@ import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito. times; +import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationControllerTest { @@ -172,8 +173,14 @@ public void testSubmitAwaitingInformationPreservesExistingCaseData() { @Test public void testValidateAwaitingInformationWithValidDate() { // Given - when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put(AWAITING_INFORMATION_DETAILS, awaitingInformation); + + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + when(objectMapper.convertValue(awaitingInformation, AwaitingInformation.class)) .thenReturn(awaitingInformation); + List emptyErrorList = new ArrayList<>(); when(awaitingInformationService.validate(awaitingInformation)) .thenReturn(emptyErrorList); @@ -185,6 +192,7 @@ public void testValidateAwaitingInformationWithValidDate() { assertNotNull(response); assertNotNull(response.getErrors()); assertTrue(response.getErrors().isEmpty()); + verify(awaitingInformationService, times(1)).addToCase(callbackRequest); verify(awaitingInformationService, times(1)).validate(awaitingInformation); } @@ -196,7 +204,12 @@ public void testValidateAwaitingInformationWithInvalidDate() { .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); - when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put(AWAITING_INFORMATION_DETAILS, invalidAwaitingInfo); + + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + when(objectMapper.convertValue(invalidAwaitingInfo, AwaitingInformation.class)) .thenReturn(invalidAwaitingInfo); List errorList = new ArrayList<>(); @@ -224,7 +237,12 @@ public void testValidateAwaitingInformationWithNullDate() { .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); - when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put(AWAITING_INFORMATION_DETAILS, nullDateAwaitingInfo); + + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + when(objectMapper.convertValue(nullDateAwaitingInfo, AwaitingInformation.class)) .thenReturn(nullDateAwaitingInfo); List emptyErrorList = new ArrayList<>(); @@ -248,7 +266,12 @@ public void testValidateAwaitingInformationWithTodayDate() { .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); - when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put(AWAITING_INFORMATION_DETAILS, todayDateAwaitingInfo); + + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + when(objectMapper.convertValue(todayDateAwaitingInfo, AwaitingInformation.class)) .thenReturn(todayDateAwaitingInfo); List errorList = new ArrayList<>(); @@ -274,8 +297,14 @@ public void testMultipleValidationErrorsReturned() { multipleErrors.add("Error 2"); multipleErrors.add("Error 3"); - when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put(AWAITING_INFORMATION_DETAILS, awaitingInformation); + + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + when(objectMapper.convertValue(awaitingInformation, AwaitingInformation.class)) .thenReturn(awaitingInformation); + when(awaitingInformationService.validate(awaitingInformation)) .thenReturn(multipleErrors); @@ -298,7 +327,12 @@ public void testAwaitingInformationWithDifferentReasons() { .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) .build(); - when(objectMapper.convertValue(caseDetails.getData(), AwaitingInformation.class)) + Map updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put(AWAITING_INFORMATION_DETAILS, infoWithOther); + + when(awaitingInformationService.addToCase(callbackRequest)) + .thenReturn(updatedCaseData); + when(objectMapper.convertValue(infoWithOther, AwaitingInformation.class)) .thenReturn(infoWithOther); when(awaitingInformationService.validate(infoWithOther)) .thenReturn(new ArrayList<>()); From 2f131ee79907a5e7c5edb079b9cbe029ee672c42 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Thu, 26 Feb 2026 12:38:35 +0000 Subject: [PATCH 31/42] FPVTL-2022 review comments --- ...gInformationControllerIntegrationTest.java | 291 ++++++++++-------- 1 file changed, 164 insertions(+), 127 deletions(-) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index bc3557b35c6..3b1454ce204 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -67,6 +67,7 @@ public class AwaitingInformationControllerIntegrationTest { public void setUp() { this.mockMvc = webAppContextSetup(webApplicationContext).build(); objectMapper.registerModule(new ParameterNamesModule()); + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); } private Map createMockCaseDataWithAwaitingInformation() { @@ -84,15 +85,31 @@ private Map createMockCaseDataWithAwaitingInformation() { return caseData; } + private Map createMockCaseDataWithInvalidDate() { + Map caseData = new HashMap<>(); + caseData.put("id", 12345678L); + + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + .build(); + + caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); + caseData.put(CASE_STATUS, "Awaiting information"); + + return caseData; + } + + // Tests for submitAwaitingInformation endpoint @Test - public void testSubmitAwaitingInformationSuccess() throws Exception { - String url = "/submit-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + public void shouldSubmitAwaitingInformationSuccessfully() throws Exception { when(authorisationService.isAuthorized(any(), any())).thenReturn(true); when(awaitingInformationService.addToCase(any())) .thenReturn(createMockCaseDataWithAwaitingInformation()); + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + String url = "/submit-awaiting-information"; mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) @@ -105,30 +122,33 @@ public void testSubmitAwaitingInformationSuccess() throws Exception { } @Test - public void testSubmitAwaitingInformationUnauthorized() throws Exception { - String url = "/submit-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + public void shouldSubmitAwaitingInformationWithValidHeaders() throws Exception { - when(authorisationService.isAuthorized(any(), any())).thenReturn(false); + when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)) + .thenReturn(true); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( post(url) - .header(AUTHORISATION_HEADER, "invalidToken") - .header(SERVICE_AUTHORISATION_HEADER, "invalidServiceToken") - .accept(APPLICATION_JSON) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .header("Accept", APPLICATION_JSON.toString()) .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isInternalServerError()) + .andExpect(status().isOk()) .andReturn(); } @Test - public void testPopulateHeaderUnauthorized() throws Exception { - String url = "/populate-header-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + public void shouldRejectSubmitAwaitingInformationWithUnauthorizedTokens() throws Exception { - when(authorisationService.isAuthorized(any(), any())).thenReturn(false); + when(authorisationService.isAuthorized(any(), any())).thenReturn(false); + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, "invalidToken") @@ -141,56 +161,43 @@ public void testPopulateHeaderUnauthorized() throws Exception { } @Test - public void testValidateAwaitingInformationSuccess() throws Exception { - String url = "/validate-awaiting-information"; + public void shouldRejectSubmitAwaitingInformationWithMissingAuthorizationHeader() throws Exception { + String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); - mockMvc.perform( post(url) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isOk()) + .andExpect(status().isBadRequest()) .andReturn(); } @Test - public void testSubmitAwaitingInformationWithCorrectHeaders() throws Exception { + public void shouldRejectSubmitAwaitingInformationWithMissingServiceAuthorizationHeader() throws Exception { String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - - when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)) - .thenReturn(true); - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); - mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) - .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) - .header("Accept", APPLICATION_JSON.toString()) + .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isOk()) + .andExpect(status().isBadRequest()) .andReturn(); } + // Tests for validateUrgentCaseCreation endpoint @Test - public void testPopulateHeaderWithCorrectHeaders() throws Exception { - String url = "/populate-header-awaiting-information"; + public void shouldValidateAwaitingInformationSuccessfully() throws Exception { + String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - - when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)) - .thenReturn(true); - + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); mockMvc.perform( post(url) - .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) - .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) - .header("Accept", APPLICATION_JSON.toString()) + .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) @@ -198,13 +205,11 @@ public void testPopulateHeaderWithCorrectHeaders() throws Exception { } @Test - public void testValidateAwaitingInformationWithValidJson() throws Exception { - String url = "/validate-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - + public void shouldValidateAwaitingInformationWithValidJson() throws Exception { when(awaitingInformationService.addToCase(any())) .thenReturn(createMockCaseDataWithAwaitingInformation()); - + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( post(url) .header("Accept", APPLICATION_JSON.toString()) @@ -215,67 +220,102 @@ public void testValidateAwaitingInformationWithValidJson() throws Exception { } @Test - public void testSubmitAwaitingInformationWithDifferentTokens() throws Exception { - String url = "/submit-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - String token1 = "Bearer token1"; - String token2 = "Bearer token2"; - String serviceToken1 = "serviceToken1"; - String serviceToken2 = "serviceToken2"; - - when(authorisationService.isAuthorized(token1, serviceToken1)).thenReturn(true); - when(authorisationService.isAuthorized(token2, serviceToken2)).thenReturn(false); + public void shouldValidateAwaitingInformationReturnErrorForInvalidDate() throws Exception { when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); - - // First request with valid tokens + .thenReturn(createMockCaseDataWithInvalidDate()); + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( post(url) - .header(AUTHORISATION_HEADER, token1) - .header(SERVICE_AUTHORISATION_HEADER, serviceToken1) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); + } - // Second request with invalid tokens + @Test + public void shouldValidateAwaitingInformationWithCorrectContentType() throws Exception { + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( post(url) - .header(AUTHORISATION_HEADER, token2) - .header(SERVICE_AUTHORISATION_HEADER, serviceToken2) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isInternalServerError()) + .andExpect(status().isOk()) .andReturn(); } @Test - public void testAllEndpointsSequentially() throws Exception { - String submitUrl = "/submit-awaiting-information"; - String populateHeaderUrl = "/populate-header-awaiting-information"; - String validateUrl = "/validate-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + public void shouldHandleValidateAwaitingInformationWithMultipleReasonTypes() throws Exception { + + + AwaitingInformationReasonEnum[] reasons = { + AwaitingInformationReasonEnum.applicantFurtherInformation, + AwaitingInformationReasonEnum.applicantClarifyConfidentialDetails, + AwaitingInformationReasonEnum.dwpHmrcWhereaboutsUnknown, + AwaitingInformationReasonEnum.respondentFurtherInformation + }; + + for (AwaitingInformationReasonEnum reason : reasons) { + Map caseData = new HashMap<>(); + caseData.put("id", 12345678L); + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(reason) + .build(); + caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); + caseData.put(CASE_STATUS, "Awaiting information"); + + when(awaitingInformationService.addToCase(any())).thenReturn(caseData); + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + mockMvc.perform( + post(url) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + } + } - when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); + @Test + public void shouldValidateAwaitingInformationWithNullReviewDate() throws Exception { + Map caseData = new HashMap<>(); + caseData.put("id", 12345678L); + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(null) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + .build(); + caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); - // Test submit endpoint + when(awaitingInformationService.addToCase(any())).thenReturn(caseData); + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( - post(submitUrl) - .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) - .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + post(url) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); + } - // Test populate header endpoint + @Test + public void shouldHandleSubmitAndValidateInSequence() throws Exception { + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())) + .thenReturn(createMockCaseDataWithAwaitingInformation()); + String submitUrl = "/submit-awaiting-information"; + String validateUrl = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + // Submit mockMvc.perform( - post(populateHeaderUrl) + post(submitUrl) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) .accept(APPLICATION_JSON) @@ -284,7 +324,7 @@ public void testAllEndpointsSequentially() throws Exception { .andExpect(status().isOk()) .andReturn(); - // Test validate endpoint + // Validate mockMvc.perform( post(validateUrl) .accept(APPLICATION_JSON) @@ -295,44 +335,25 @@ public void testAllEndpointsSequentially() throws Exception { } @Test - public void testSubmitAwaitingInformationMissingAuthHeader() throws Exception { - String url = "/submit-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + public void shouldHandleCaseDataWithAdditionalFields() throws Exception { - mockMvc.perform( - post(url) - .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) - .accept(APPLICATION_JSON) - .contentType(APPLICATION_JSON) - .content(jsonRequest)) - .andExpect(status().isBadRequest()) - .andReturn(); - } - - @Test - public void testPopulateHeaderMissingServiceAuthHeader() throws Exception { - String url = "/populate-header-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + Map caseData = new HashMap<>(); + caseData.put("id", 12345678L); + caseData.put("applicantName", "John Doe"); + caseData.put("respondentName", "Jane Doe"); + caseData.put("caseType", "C100"); - mockMvc.perform( - post(url) - .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) - .accept(APPLICATION_JSON) - .contentType(APPLICATION_JSON) - .content(jsonRequest)) - .andExpect(status().isBadRequest()) - .andReturn(); - } + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(5)) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + .build(); + caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); + caseData.put(CASE_STATUS, "Awaiting information"); - @Test - public void testSubmitAwaitingInformationResponseContentType() throws Exception { + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())).thenReturn(caseData); String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - - when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); - mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) @@ -345,20 +366,36 @@ public void testSubmitAwaitingInformationResponseContentType() throws Exception } @Test - public void testValidateAwaitingInformationResponseContentType() throws Exception { - String url = "/validate-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); - - mockMvc.perform( - post(url) - .accept(APPLICATION_JSON) - .contentType(APPLICATION_JSON) - .content(jsonRequest)) - .andExpect(status().isOk()) - .andReturn(); + public void shouldHandleValidateWithDifferentReviewDateRanges() throws Exception { + + LocalDate[] dates = { + LocalDate.now().plusDays(1), + LocalDate.now().plusDays(10), + LocalDate.now().plusDays(30), + LocalDate.now().plusDays(365) + }; + + for (LocalDate date : dates) { + Map caseData = new HashMap<>(); + caseData.put("id", 12345678L); + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(date) + .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + .build(); + caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); + caseData.put(CASE_STATUS, "Awaiting information"); + + when(awaitingInformationService.addToCase(any())).thenReturn(caseData); + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + mockMvc.perform( + post(url) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + } } } From d8355f98f12013113b228faead1a21819b251f14 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Thu, 26 Feb 2026 18:58:26 +0000 Subject: [PATCH 32/42] FPVTL-2022 review date validation --- .../hmcts/reform/prl/services/AwaitingInformationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index d265eaa48e3..b94c101ad3c 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -33,7 +33,7 @@ public List validate(AwaitingInformation awaitingInformation) { List errorList = new ArrayList<>(); if (featureToggleService.isAwaitingInformationEnabled() && awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { - errorList.add("The date must be in the future"); + errorList.add("Please enter a future date"); } return errorList; } From 770329c38bf736213f660dca4ec9cbe714ba0f45 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Mon, 2 Mar 2026 13:23:42 +0000 Subject: [PATCH 33/42] FPVTL-2022 case event name change from Awaiting Information to Request Further Information --- ...gInformationControllerIntegrationTest.java | 323 +++++++++-------- .../prl/constants/PrlAppsConstants.java | 2 +- .../AwaitingInformationController.java | 28 +- .../gov/hmcts/reform/prl/enums/CaseEvent.java | 2 +- ... RequestFurtherInformationReasonEnum.java} | 6 +- .../models/dto/ccd/AwaitingInformation.java | 7 +- .../services/AwaitingInformationService.java | 15 +- .../AwaitingInformationControllerTest.java | 336 ++++++------------ .../AwaitingInformationServiceTest.java | 195 +++------- 9 files changed, 358 insertions(+), 556 deletions(-) rename src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/{AwaitingInformationReasonEnum.java => RequestFurtherInformationReasonEnum.java} (90%) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java index 3b1454ce204..96461552f60 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java @@ -9,34 +9,30 @@ 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.http.MediaType; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.web.servlet.MockMvc; import org.springframework.web.context.WebApplicationContext; import uk.gov.hmcts.reform.prl.ResourceLoader; -import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; -import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; -import java.time.LocalDate; +import java.util.ArrayList; import java.util.HashMap; +import java.util.List; import java.util.Map; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import static org.springframework.http.MediaType.APPLICATION_JSON; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; -import static uk.gov.hmcts.reform.prl.util.TestConstants.AUTHORISATION_HEADER; -import static uk.gov.hmcts.reform.prl.util.TestConstants.SERVICE_AUTHORISATION_HEADER; -import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_AUTH_TOKEN; -import static uk.gov.hmcts.reform.prl.util.TestConstants.TEST_SERVICE_AUTH_TOKEN; - @Slf4j @SpringBootTest(properties = { @@ -63,6 +59,11 @@ public class AwaitingInformationControllerIntegrationTest { @Autowired private ObjectMapper objectMapper; + private static final String AUTHORISATION_HEADER = "Authorization"; + private static final String SERVICE_AUTHORISATION_HEADER = "Service-Authorization"; + private static final String TEST_AUTH_TOKEN = "Bearer testAuthToken"; + private static final String TEST_SERVICE_AUTH_TOKEN = "testServiceAuthToken"; + @Before public void setUp() { this.mockMvc = webAppContextSetup(webApplicationContext).build(); @@ -70,46 +71,23 @@ public void setUp() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); } - private Map createMockCaseDataWithAwaitingInformation() { + private Map createMockCaseData() { Map caseData = new HashMap<>(); caseData.put("id", 12345678L); - - AwaitingInformation awaitingInfo = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - - caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); - caseData.put(CASE_STATUS, "Awaiting information"); - + caseData.put(CASE_STATUS, CaseStatus.builder().state("Awaiting information").build()); return caseData; } - private Map createMockCaseDataWithInvalidDate() { - Map caseData = new HashMap<>(); - caseData.put("id", 12345678L); - - AwaitingInformation awaitingInfo = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - - caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); - caseData.put(CASE_STATUS, "Awaiting information"); + // Tests for /submit-awaiting-information endpoint - return caseData; - } - - // Tests for submitAwaitingInformation endpoint @Test public void shouldSubmitAwaitingInformationSuccessfully() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); + when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - String url = "/submit-awaiting-information"; mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) @@ -118,37 +96,47 @@ public void shouldSubmitAwaitingInformationSuccessfully() throws Exception { .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) + .andExpect(jsonPath("$.data").exists()) .andReturn(); } @Test - public void shouldSubmitAwaitingInformationWithValidHeaders() throws Exception { + public void shouldRejectSubmitAwaitingInformationWithoutAuthorizationHeader() throws Exception { + String url = "/submit-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + mockMvc.perform( + post(url) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isBadRequest()) + .andReturn(); + } - when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)) - .thenReturn(true); - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); + @Test + public void shouldRejectSubmitAwaitingInformationWithoutServiceAuthorizationHeader() throws Exception { String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) - .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) - .header("Accept", APPLICATION_JSON.toString()) + .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isOk()) + .andExpect(status().isBadRequest()) .andReturn(); } @Test public void shouldRejectSubmitAwaitingInformationWithUnauthorizedTokens() throws Exception { - - - when(authorisationService.isAuthorized(any(), any())).thenReturn(false); String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(false); + mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, "invalidToken") @@ -161,68 +149,101 @@ public void shouldRejectSubmitAwaitingInformationWithUnauthorizedTokens() throws } @Test - public void shouldRejectSubmitAwaitingInformationWithMissingAuthorizationHeader() throws Exception { + public void shouldSubmitAwaitingInformationWithValidHeaders() throws Exception { String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)).thenReturn(true); + when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); + mockMvc.perform( post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isBadRequest()) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.data.id").value(12345678)) .andReturn(); } @Test - public void shouldRejectSubmitAwaitingInformationWithMissingServiceAuthorizationHeader() throws Exception { + public void shouldHandleSubmitAwaitingInformationWithAdditionalCaseData() throws Exception { + Map caseData = createMockCaseData(); + caseData.put("applicantName", "John Doe"); + caseData.put("respondentName", "Jane Doe"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())).thenReturn(caseData); + String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isBadRequest()) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.data.applicantName").value("John Doe")) + .andExpect(jsonPath("$.data.respondentName").value("Jane Doe")) .andReturn(); } - // Tests for validateUrgentCaseCreation endpoint + // Tests for /validate-awaiting-information endpoint + @Test public void shouldValidateAwaitingInformationSuccessfully() throws Exception { String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); + + when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + .thenReturn(new ArrayList<>()); + mockMvc.perform( post(url) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) + .andExpect(jsonPath("$.errors").isArray()) .andReturn(); } @Test - public void shouldValidateAwaitingInformationWithValidJson() throws Exception { - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); + public void shouldValidateAwaitingInformationWithErrors() throws Exception { String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + List errorList = new ArrayList<>(); + errorList.add("Please enter a future date"); + + when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + .thenReturn(errorList); + mockMvc.perform( post(url) - .header("Accept", APPLICATION_JSON.toString()) + .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) + .andExpect(jsonPath("$.errors[0]").value("Please enter a future date")) .andReturn(); } @Test - public void shouldValidateAwaitingInformationReturnErrorForInvalidDate() throws Exception { - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithInvalidDate()); + public void shouldValidateAwaitingInformationWithMultipleErrors() throws Exception { + + List errorList = new ArrayList<>(); + errorList.add("Please enter a future date"); + errorList.add("Review date cannot be more than 12 months away"); + + when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + .thenReturn(errorList); + String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( @@ -231,89 +252,73 @@ public void shouldValidateAwaitingInformationReturnErrorForInvalidDate() throws .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) + .andExpect(jsonPath("$.errors.length()").value(2)) .andReturn(); } @Test - public void shouldValidateAwaitingInformationWithCorrectContentType() throws Exception { - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); + public void shouldValidateAwaitingInformationReturnEmptyErrorsWhenFeatureToggleDisabled() throws Exception { String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); + mockMvc.perform( post(url) .accept(APPLICATION_JSON) .contentType(APPLICATION_JSON) .content(jsonRequest)) .andExpect(status().isOk()) + .andExpect(jsonPath("$.errors").isEmpty()) .andReturn(); } @Test - public void shouldHandleValidateAwaitingInformationWithMultipleReasonTypes() throws Exception { - - - AwaitingInformationReasonEnum[] reasons = { - AwaitingInformationReasonEnum.applicantFurtherInformation, - AwaitingInformationReasonEnum.applicantClarifyConfidentialDetails, - AwaitingInformationReasonEnum.dwpHmrcWhereaboutsUnknown, - AwaitingInformationReasonEnum.respondentFurtherInformation - }; - - for (AwaitingInformationReasonEnum reason : reasons) { - Map caseData = new HashMap<>(); - caseData.put("id", 12345678L); - AwaitingInformation awaitingInfo = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(reason) - .build(); - caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); - caseData.put(CASE_STATUS, "Awaiting information"); - - when(awaitingInformationService.addToCase(any())).thenReturn(caseData); - String url = "/validate-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - mockMvc.perform( - post(url) - .accept(APPLICATION_JSON) - .contentType(APPLICATION_JSON) - .content(jsonRequest)) - .andExpect(status().isOk()) - .andReturn(); - } + public void shouldValidateAwaitingInformationWithCorrectContentType() throws Exception { + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + .thenReturn(new ArrayList<>()); + + mockMvc.perform( + post(url) + .accept(MediaType.APPLICATION_JSON) + .contentType(MediaType.APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); } @Test - public void shouldValidateAwaitingInformationWithNullReviewDate() throws Exception { - Map caseData = new HashMap<>(); - caseData.put("id", 12345678L); - AwaitingInformation awaitingInfo = AwaitingInformation.builder() - .reviewDate(null) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); - - when(awaitingInformationService.addToCase(any())).thenReturn(caseData); + public void shouldHandleValidateAwaitingInformationWithoutContentType() throws Exception { String url = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + .thenReturn(new ArrayList<>()); + mockMvc.perform( post(url) - .accept(APPLICATION_JSON) - .contentType(APPLICATION_JSON) .content(jsonRequest)) - .andExpect(status().isOk()) + .andExpect(status().isUnsupportedMediaType()) .andReturn(); } + // Integration workflow tests + @Test - public void shouldHandleSubmitAndValidateInSequence() throws Exception { - when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())) - .thenReturn(createMockCaseDataWithAwaitingInformation()); + public void shouldHandleCompleteAwaitingInformationWorkflow() throws Exception { String submitUrl = "/submit-awaiting-information"; String validateUrl = "/validate-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - // Submit + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); + when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + .thenReturn(new ArrayList<>()); + + // Submit awaiting information mockMvc.perform( post(submitUrl) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) @@ -324,7 +329,7 @@ public void shouldHandleSubmitAndValidateInSequence() throws Exception { .andExpect(status().isOk()) .andReturn(); - // Validate + // Validate awaiting information mockMvc.perform( post(validateUrl) .accept(APPLICATION_JSON) @@ -335,25 +340,41 @@ public void shouldHandleSubmitAndValidateInSequence() throws Exception { } @Test - public void shouldHandleCaseDataWithAdditionalFields() throws Exception { + public void shouldHandleSequentialValidationCalls() throws Exception { + String url = "/validate-awaiting-information"; + String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - Map caseData = new HashMap<>(); - caseData.put("id", 12345678L); - caseData.put("applicantName", "John Doe"); - caseData.put("respondentName", "Jane Doe"); - caseData.put("caseType", "C100"); + when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + .thenReturn(new ArrayList<>()); - AwaitingInformation awaitingInfo = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); - caseData.put(CASE_STATUS, "Awaiting information"); + // First validation call + mockMvc.perform( + post(url) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); - when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())).thenReturn(caseData); + // Second validation call + mockMvc.perform( + post(url) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); + } + + @Test + public void shouldHandleMultipleSubmitCalls() throws Exception { String url = "/submit-awaiting-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); + + when(authorisationService.isAuthorized(any(), any())).thenReturn(true); + when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); + + // First submit mockMvc.perform( post(url) .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) @@ -363,39 +384,17 @@ public void shouldHandleCaseDataWithAdditionalFields() throws Exception { .content(jsonRequest)) .andExpect(status().isOk()) .andReturn(); - } - @Test - public void shouldHandleValidateWithDifferentReviewDateRanges() throws Exception { - - LocalDate[] dates = { - LocalDate.now().plusDays(1), - LocalDate.now().plusDays(10), - LocalDate.now().plusDays(30), - LocalDate.now().plusDays(365) - }; - - for (LocalDate date : dates) { - Map caseData = new HashMap<>(); - caseData.put("id", 12345678L); - AwaitingInformation awaitingInfo = AwaitingInformation.builder() - .reviewDate(date) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - caseData.put(AWAITING_INFORMATION_DETAILS, awaitingInfo); - caseData.put(CASE_STATUS, "Awaiting information"); - - when(awaitingInformationService.addToCase(any())).thenReturn(caseData); - String url = "/validate-awaiting-information"; - String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - mockMvc.perform( - post(url) - .accept(APPLICATION_JSON) - .contentType(APPLICATION_JSON) - .content(jsonRequest)) - .andExpect(status().isOk()) - .andReturn(); - } + // Second submit + mockMvc.perform( + post(url) + .header(AUTHORISATION_HEADER, TEST_AUTH_TOKEN) + .header(SERVICE_AUTHORISATION_HEADER, TEST_SERVICE_AUTH_TOKEN) + .accept(APPLICATION_JSON) + .contentType(APPLICATION_JSON) + .content(jsonRequest)) + .andExpect(status().isOk()) + .andReturn(); } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java b/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java index 19c601168c5..da8ec9b5565 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/constants/PrlAppsConstants.java @@ -1126,7 +1126,7 @@ public class PrlAppsConstants { public static final String CASE_STATUS = "caseStatus"; - public static final String AWAITING_INFORMATION_DETAILS = "awaitingInformationDetails"; + public static final String REQUEST_FURTHER_INFORMATION_DETAILS = "requestFurtherInformationDetails"; public static final String FETCH_FEE_INVALID_APPLICATION_TYPE = "Invalid application type to fetch fee details: "; public static final String FETCH_FEE_ERROR = "Error while fetching fee details for application type: "; diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java index ce10dc2bf47..cd5d3c18b31 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java @@ -19,17 +19,13 @@ import uk.gov.hmcts.reform.ccd.client.model.AboutToStartOrSubmitCallbackResponse; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; -import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; -import java.util.List; -import java.util.Map; - +import static java.util.Collections.emptyList; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.INVALID_CLIENT; @Slf4j @@ -51,11 +47,11 @@ public class AwaitingInformationController { public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, - @RequestBody uk.gov.hmcts.reform.ccd.client.model.CallbackRequest callbackRequest + @RequestBody CallbackRequest callbackRequest ) { if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { - Map caseDataUpdated = awaitingInformationService.addToCase(callbackRequest); + var caseDataUpdated = awaitingInformationService.addToCase(callbackRequest); return AboutToStartOrSubmitCallbackResponse.builder().data(caseDataUpdated).build(); } throw (new RuntimeException(INVALID_CLIENT)); @@ -67,20 +63,14 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Child details are fetched"), @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) - public CallbackResponse validateUrgentCaseCreation(@RequestBody CallbackRequest callbackRequest) { - - if (featureToggleService.isAwaitingInformationEnabled()) { - Map caseDataUpdated = awaitingInformationService.addToCase(callbackRequest); - - AwaitingInformation awaitingInformation = objectMapper.convertValue( - caseDataUpdated.get(AWAITING_INFORMATION_DETAILS), AwaitingInformation.class); - - List errorList = awaitingInformationService.validate(awaitingInformation); - + public CallbackResponse validateReviewDate(@RequestBody CallbackRequest callbackRequest) { + if (!featureToggleService.isAwaitingInformationEnabled()) { return CallbackResponse.builder() - .errors(errorList) + .errors(emptyList()) .build(); } - throw new RuntimeException(INVALID_CLIENT); + return CallbackResponse.builder() + .errors(awaitingInformationService.validate(callbackRequest)) + .build(); } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java index aba143af475..11236ff4a92 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java @@ -76,7 +76,7 @@ public enum CaseEvent { APPLICANT_DETAILS("applicantsDetails"), REVIEW_ADDITIONAL_APPLICATION("reviewAdditionalApplication"), CLOSE_REVIEW_RA_REQUEST_TASK("closeReviewRARequestTask"), - AWAITING_INFORMATION("awaitingInformation"); + REQUEST_FURTHER_INFORMATION("requestFurtherInformation"); private final String value; diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/RequestFurtherInformationReasonEnum.java similarity index 90% rename from src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java rename to src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/RequestFurtherInformationReasonEnum.java index f79e002bd20..07c763fff2d 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/AwaitingInformationReasonEnum.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/awaitinginformation/RequestFurtherInformationReasonEnum.java @@ -9,7 +9,7 @@ @RequiredArgsConstructor @JsonSerialize(using = CustomEnumSerializer.class) -public enum AwaitingInformationReasonEnum { +public enum RequestFurtherInformationReasonEnum { @JsonProperty("miamFurtherInformation") miamFurtherInformation("miamFurtherInformation", "MIAM - further information required"), @@ -37,8 +37,8 @@ public String getDisplayedValue() { } @JsonCreator - public static AwaitingInformationReasonEnum getValue(String key) { - return AwaitingInformationReasonEnum.valueOf(key); + public static RequestFurtherInformationReasonEnum getValue(String key) { + return RequestFurtherInformationReasonEnum.valueOf(key); } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java b/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java index e85f7969362..f530271ac8b 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java @@ -5,9 +5,10 @@ import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; -import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; +import uk.gov.hmcts.reform.prl.enums.awaitinginformation.RequestFurtherInformationReasonEnum; import java.time.LocalDate; +import java.util.List; @Data @Builder(toBuilder = true) @@ -16,6 +17,6 @@ public class AwaitingInformation { @JsonProperty("reviewByDate") private LocalDate reviewDate; - @JsonProperty("awaitingInformation") - private AwaitingInformationReasonEnum awaitingInformationReasonEnum; + @JsonProperty("requestFurtherInformationReasonList") + private List requestFurtherInformationReasonEnum; } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index b94c101ad3c..9b63f1241e4 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -16,7 +16,9 @@ import java.util.List; import java.util.Map; +import static java.util.Collections.emptyList; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @Slf4j @@ -27,18 +29,23 @@ public class AwaitingInformationService { private final FeatureToggleService featureToggleService; private final ObjectMapper objectMapper; - private final CaseSummaryTabService caseSummaryTab; - public List validate(AwaitingInformation awaitingInformation) { + public List validate(CallbackRequest callbackRequest) { + if (!featureToggleService.isAwaitingInformationEnabled()) { + return emptyList(); + } + var caseDataUpdated = addToCase(callbackRequest); + var awaitingInformation = objectMapper.convertValue( + caseDataUpdated.get(REQUEST_FURTHER_INFORMATION_DETAILS), AwaitingInformation.class); List errorList = new ArrayList<>(); - if (featureToggleService.isAwaitingInformationEnabled() && awaitingInformation.getReviewDate() + if (awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { errorList.add("Please enter a future date"); } return errorList; } - public Map addToCase(CallbackRequest callbackRequest) { + public Map addToCase(CallbackRequest callbackRequest) { Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); caseDataUpdated.put( CASE_STATUS, CaseStatus.builder() diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java index 3741bd93d0b..19ebf7c9383 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java @@ -3,7 +3,6 @@ import com.fasterxml.jackson.databind.ObjectMapper; import org.junit.Before; import org.junit.Test; -import org.junit.function.ThrowingRunnable; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; @@ -11,16 +10,12 @@ import uk.gov.hmcts.reform.ccd.client.model.AboutToStartOrSubmitCallbackResponse; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; -import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; -import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; -import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; -import java.time.LocalDate; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -31,10 +26,11 @@ import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; import static org.mockito.ArgumentMatchers.any; +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 static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.AWAITING_INFORMATION_DETAILS; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationControllerTest { @@ -49,19 +45,18 @@ public class AwaitingInformationControllerTest { private FeatureToggleService featureToggleService; @Mock - private ObjectMapper objectMapper; + private AuthorisationService authorisationService; @Mock - private AuthorisationService authorisationService; + private ObjectMapper objectMapper; - public static final String AUTH_TOKEN = "Bearer TestAuthToken"; - public static final String S2S_TOKEN = "s2s AuthToken"; - public static final String INVALID_CLIENT_ERROR = "Invalid Client"; + private static final String AUTH_TOKEN = "Bearer testAuthToken"; + private static final String S2S_TOKEN = "s2sTestToken"; - Map caseDataMap; - CaseDetails caseDetails; - CallbackRequest callbackRequest; - AwaitingInformation awaitingInformation; + private CallbackRequest callbackRequest; + private CaseDetails caseDetails; + private Map caseDataMap; + private Map updatedCaseData; @Before public void setUp() { @@ -78,280 +73,175 @@ public void setUp() { .caseDetails(caseDetails) .build(); - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); + updatedCaseData = new HashMap<>(caseDataMap); + updatedCaseData.put(CASE_STATUS, CaseStatus.builder().state("Awaiting information").build()); - when(authorisationService.isAuthorized(any(), any())).thenReturn(true); when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); } - // Tests for submitAwaitingInformation method + // Tests for submitAwaitingInformation endpoint + @Test - public void testSubmitAwaitingInformationSuccessfully() { - // Given - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put( - PrlAppsConstants.CASE_STATUS, - CaseStatus.builder().state("Awaiting information").build() - ); - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - - // When - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( - AUTH_TOKEN, - S2S_TOKEN, - callbackRequest - ); - - // Then + public void shouldSubmitAwaitingInformationSuccessfully() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); + assertNotNull(response); assertNotNull(response.getData()); - assertTrue(response.getData().containsKey(PrlAppsConstants.CASE_STATUS)); + assertTrue(response.getData().containsKey(CASE_STATUS)); verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - } - - @Test - public void testSubmitAwaitingInformationCallsAddToCaseService() { - // Given - Map updatedCaseData = new HashMap<>(caseDataMap); - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - - // When - awaitingInformationController.submitAwaitingInformation( - AUTH_TOKEN, - S2S_TOKEN, - callbackRequest - ); - - // Then verify(awaitingInformationService, times(1)).addToCase(callbackRequest); } @Test - public void testSubmitAwaitingInformationThrowsExceptionWhenUnauthorized() { - // Given + public void shouldThrowExceptionWhenUnauthorized() { when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(false); - // When & Then - assertExpectedException( - () -> awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest), - RuntimeException.class, - INVALID_CLIENT_ERROR - ); + RuntimeException exception = assertThrows(RuntimeException.class, () -> + awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); + + assertEquals("Invalid Client", exception.getMessage()); + verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); + verify(awaitingInformationService, times(0)).addToCase(any()); } @Test - public void testSubmitAwaitingInformationPreservesExistingCaseData() { - // Given - caseDataMap.put("testKey", "testValue"); - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put( - PrlAppsConstants.CASE_STATUS, - CaseStatus.builder().state("Awaiting information").build() - ); - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - - // When - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController.submitAwaitingInformation( - AUTH_TOKEN, - S2S_TOKEN, - callbackRequest - ); - - // Then - assertTrue(response.getData().containsKey("testKey")); - assertEquals("testValue", response.getData().get("testKey")); - } + public void shouldThrowExceptionWhenFeatureToggleDisabled() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); + RuntimeException exception = assertThrows(RuntimeException.class, () -> + awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); - // Tests for validateUrgentCaseCreation (validateAwaitingInformation) method - @Test - public void testValidateAwaitingInformationWithValidDate() { - // Given - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put(AWAITING_INFORMATION_DETAILS, awaitingInformation); + assertEquals("Invalid Client", exception.getMessage()); + verify(awaitingInformationService, times(0)).addToCase(any()); + } - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - when(objectMapper.convertValue(awaitingInformation, AwaitingInformation.class)) - .thenReturn(awaitingInformation); + @Test + public void shouldPreserveExistingCaseDataWhenSubmitting() { + caseDataMap.put("applicantName", "John Doe"); + caseDataMap.put("respondentName", "Jane Doe"); + updatedCaseData.put("applicantName", "John Doe"); + updatedCaseData.put("respondentName", "Jane Doe"); - List emptyErrorList = new ArrayList<>(); - when(awaitingInformationService.validate(awaitingInformation)) - .thenReturn(emptyErrorList); + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); - // When - CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); - // Then - assertNotNull(response); - assertNotNull(response.getErrors()); - assertTrue(response.getErrors().isEmpty()); - verify(awaitingInformationService, times(1)).addToCase(callbackRequest); - verify(awaitingInformationService, times(1)).validate(awaitingInformation); + assertNotNull(response.getData()); + assertEquals("John Doe", response.getData().get("applicantName")); + assertEquals("Jane Doe", response.getData().get("respondentName")); } @Test - public void testValidateAwaitingInformationWithInvalidDate() { - // Given - AwaitingInformation invalidAwaitingInfo = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); + public void shouldHandleNullCaseData() { + Map emptyCaseData = new HashMap<>(); + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(emptyCaseData); - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put(AWAITING_INFORMATION_DETAILS, invalidAwaitingInfo); + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - when(objectMapper.convertValue(invalidAwaitingInfo, AwaitingInformation.class)) - .thenReturn(invalidAwaitingInfo); + assertNotNull(response); + assertNotNull(response.getData()); + } - List errorList = new ArrayList<>(); - errorList.add("The date must be in the future"); + // Tests for validateReviewDate endpoint - when(awaitingInformationService.validate(invalidAwaitingInfo)) - .thenReturn(errorList); + @Test + public void shouldValidateReviewDateSuccessfully() { + List emptyErrors = new ArrayList<>(); + when(awaitingInformationService.validate(callbackRequest)).thenReturn(emptyErrors); - // When - CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); - // Then assertNotNull(response); assertNotNull(response.getErrors()); - assertEquals(1, response.getErrors().size()); - assertEquals("The date must be in the future", response.getErrors().getFirst()); - verify(awaitingInformationService, times(1)).validate(invalidAwaitingInfo); + assertTrue(response.getErrors().isEmpty()); + verify(awaitingInformationService, times(1)).validate(callbackRequest); } @Test - public void testValidateAwaitingInformationWithNullDate() { - // Given - AwaitingInformation nullDateAwaitingInfo = AwaitingInformation.builder() - .reviewDate(null) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put(AWAITING_INFORMATION_DETAILS, nullDateAwaitingInfo); - - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - when(objectMapper.convertValue(nullDateAwaitingInfo, AwaitingInformation.class)) - .thenReturn(nullDateAwaitingInfo); + public void shouldReturnValidationErrorsForInvalidDate() { + List errorList = new ArrayList<>(); + errorList.add("Please enter a future date"); - List emptyErrorList = new ArrayList<>(); - when(awaitingInformationService.validate(nullDateAwaitingInfo)) - .thenReturn(emptyErrorList); + when(awaitingInformationService.validate(callbackRequest)).thenReturn(errorList); - // When - CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); - // Then assertNotNull(response); - assertNotNull(response.getErrors()); - assertTrue(response.getErrors().isEmpty()); + assertEquals(1, response.getErrors().size()); + assertEquals("Please enter a future date", response.getErrors().get(0)); } @Test - public void testValidateAwaitingInformationWithTodayDate() { - // Given - AwaitingInformation todayDateAwaitingInfo = AwaitingInformation.builder() - .reviewDate(LocalDate.now()) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); + public void shouldReturnEmptyErrorsWhenFeatureToggleDisabled() { + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put(AWAITING_INFORMATION_DETAILS, todayDateAwaitingInfo); + CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - when(objectMapper.convertValue(todayDateAwaitingInfo, AwaitingInformation.class)) - .thenReturn(todayDateAwaitingInfo); + assertNotNull(response); + assertTrue(response.getErrors().isEmpty()); + } + @Test + public void shouldReturnMultipleValidationErrors() { List errorList = new ArrayList<>(); - errorList.add("The date must be in the future"); + errorList.add("Please enter a future date"); + errorList.add("Review date cannot be more than 12 months away"); - when(awaitingInformationService.validate(todayDateAwaitingInfo)) - .thenReturn(errorList); + when(awaitingInformationService.validate(callbackRequest)).thenReturn(errorList); - // When - CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); - // Then assertNotNull(response); - assertEquals(1, response.getErrors().size()); + assertEquals(2, response.getErrors().size()); + verify(awaitingInformationService, times(1)).validate(callbackRequest); } - @Test - public void testMultipleValidationErrorsReturned() { - // Given - List multipleErrors = new ArrayList<>(); - multipleErrors.add("Error 1"); - multipleErrors.add("Error 2"); - multipleErrors.add("Error 3"); - - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put(AWAITING_INFORMATION_DETAILS, awaitingInformation); - - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - when(objectMapper.convertValue(awaitingInformation, AwaitingInformation.class)) - .thenReturn(awaitingInformation); - - when(awaitingInformationService.validate(awaitingInformation)) - .thenReturn(multipleErrors); + public void shouldCallFeatureToggleServiceBeforeValidation() { + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); + when(awaitingInformationService.validate(callbackRequest)).thenReturn(new ArrayList<>()); - // When - CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); + CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); - // Then assertNotNull(response); - assertEquals(3, response.getErrors().size()); - assertTrue(response.getErrors().contains("Error 1")); - assertTrue(response.getErrors().contains("Error 2")); - assertTrue(response.getErrors().contains("Error 3")); + verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); } @Test - public void testAwaitingInformationWithDifferentReasons() { - // Given - AwaitingInformation infoWithOther = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(10)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); + public void shouldHandleCaseDataWithMultipleFields() { + caseDataMap.put("caseType", "C100"); + caseDataMap.put("eventId", "123456"); + updatedCaseData.put("caseType", "C100"); + updatedCaseData.put("eventId", "123456"); - Map updatedCaseData = new HashMap<>(caseDataMap); - updatedCaseData.put(AWAITING_INFORMATION_DETAILS, infoWithOther); + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); - when(awaitingInformationService.addToCase(callbackRequest)) - .thenReturn(updatedCaseData); - when(objectMapper.convertValue(infoWithOther, AwaitingInformation.class)) - .thenReturn(infoWithOther); - when(awaitingInformationService.validate(infoWithOther)) - .thenReturn(new ArrayList<>()); + AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); - // When - CallbackResponse response = awaitingInformationController.validateUrgentCaseCreation(callbackRequest); - - // Then - assertNotNull(response); - assertTrue(response.getErrors().isEmpty()); + assertNotNull(response.getData()); + assertEquals("C100", response.getData().get("caseType")); + assertEquals("123456", response.getData().get("eventId")); } - // Helper method for assertion - protected void assertExpectedException( - ThrowingRunnable methodExpectedToFail, - Class expectedThrowableClass, - String expectedMessage) { - T exception = assertThrows(expectedThrowableClass, methodExpectedToFail); - assertEquals(expectedMessage, exception.getMessage()); + @Test + public void shouldVerifyCorrectHeadersUsedInSubmit() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + + awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); + + verify(authorisationService, times(1)).isAuthorized(eq(AUTH_TOKEN), eq(S2S_TOKEN)); } } diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java index 6b43405c9dd..1c3ff4a7225 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java @@ -9,8 +9,7 @@ import org.mockito.junit.MockitoJUnitRunner; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; -import uk.gov.hmcts.reform.prl.enums.awaitinginformation.AwaitingInformationReasonEnum; -import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; +import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; import java.time.LocalDate; @@ -19,12 +18,11 @@ import java.util.Map; import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; -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 static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; +import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @RunWith(MockitoJUnitRunner.Silent.class) public class AwaitingInformationServiceTest { @@ -38,186 +36,103 @@ public class AwaitingInformationServiceTest { @Mock private ObjectMapper objectMapper; - private AwaitingInformation awaitingInformation; - private Map caseDataMap; + @Mock private CallbackRequest callbackRequest; + private Map caseDataMap; @Before public void setUp() { - when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); - caseDataMap = new HashMap<>(); caseDataMap.put("id", 12345678L); CaseDetails caseDetails = CaseDetails.builder() .id(12345678L) - .state("AWAITING_INFORMATION") + .state(AWAITING_INFORMATION.getLabel()) .data(caseDataMap) .build(); callbackRequest = CallbackRequest.builder() .caseDetails(caseDetails) .build(); + + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); } - // Tests for validate method @Test - public void testValidateAwaitingInformationWithValidFutureDate() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + public void validateSuccessfullyProcessesValidFutureDate() { + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(10)) .build(); - // When - List errors = awaitingInformationService.validate(awaitingInformation); + caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); + + when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + .thenReturn(awaitingInfo); + + List errors = awaitingInformationService.validate(callbackRequest); - // Then - assertNotNull(errors); assertTrue(errors.isEmpty()); + verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); } @Test - public void testValidateAwaitingInformationWithTodaysDate() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now()) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + public void validateHandlesNullReviewDateWithoutError() { + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(null) .build(); - // When - List errors = awaitingInformationService.validate(awaitingInformation); + caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); + + when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + .thenReturn(awaitingInfo); + + List errors = awaitingInformationService.validate(callbackRequest); - // Then - assertNotNull(errors); - assertFalse(errors.isEmpty()); - assertEquals(1, errors.size()); - assertEquals("The date must be in the future", errors.getFirst()); + assertTrue(errors.isEmpty()); } @Test - public void testValidateAwaitingInformationWithPastDate() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) - .build(); + public void validateReturnsEmptyListWhenAwaitingInformationIsNull() { + caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, null); + + when(objectMapper.convertValue(null, AwaitingInformation.class)) + .thenReturn(AwaitingInformation.builder().reviewDate(null).build()); - // When - List errors = awaitingInformationService.validate(awaitingInformation); + List errors = awaitingInformationService.validate(callbackRequest); - // Then - assertNotNull(errors); - assertFalse(errors.isEmpty()); - assertEquals(1, errors.size()); - assertEquals("The date must be in the future", errors.getFirst()); + assertTrue(errors.isEmpty()); } @Test - public void testValidateAwaitingInformationWithNullDate() { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(null) - .awaitingInformationReasonEnum(AwaitingInformationReasonEnum.applicantFurtherInformation) + public void validateReturnsErrorMessageExactlyAsConfigured() { + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) .build(); - // When - List errors = awaitingInformationService.validate(awaitingInformation); + caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - // Then - assertNotNull(errors); - assertTrue(errors.isEmpty()); - } + when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + .thenReturn(awaitingInfo); - @Test - public void testValidateAwaitingInformationWithDifferentReasons() { - // Test with different reason enums - AwaitingInformationReasonEnum[] reasons = { - AwaitingInformationReasonEnum.applicantFurtherInformation, - AwaitingInformationReasonEnum.applicantClarifyConfidentialDetails, - AwaitingInformationReasonEnum.other - }; - - for (AwaitingInformationReasonEnum reason : reasons) { - // Given - awaitingInformation = AwaitingInformation.builder() - .reviewDate(LocalDate.now().plusDays(5)) - .awaitingInformationReasonEnum(reason) - .build(); - - // When - List errors = awaitingInformationService.validate(awaitingInformation); - - // Then - assertNotNull(errors); - assertTrue(errors.isEmpty()); - } - } + List errors = awaitingInformationService.validate(callbackRequest); - // Tests for addToCase method - @Test - public void testAddToCaseSuccessfully() { - // Given - when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) - .thenReturn(awaitingInformation); - - // When - Map result = awaitingInformationService.addToCase(callbackRequest); - - // Then - assertNotNull(result); - assertTrue(result.containsKey(CASE_STATUS)); - Object caseStatusObj = result.get(CASE_STATUS); - assertNotNull(caseStatusObj); - assertTrue(caseStatusObj instanceof CaseStatus); + assertEquals("Please enter a future date", errors.getFirst()); } - @Test - public void testAddToCasePreservesExistingCaseData() { - // Given - caseDataMap.put("testKey", "testValue"); - caseDataMap.put("anotherKey", 12345); - when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) - .thenReturn(awaitingInformation); - - // When - Map result = awaitingInformationService.addToCase(callbackRequest); - - // Then - assertTrue(result.containsKey("testKey")); - assertEquals("testValue", result.get("testKey")); - assertTrue(result.containsKey("anotherKey")); - assertEquals(12345, result.get("anotherKey")); - } + public void validateProcessesCallbackRequestCorrectly() { + AwaitingInformation awaitingInfo = AwaitingInformation.builder() + .reviewDate(LocalDate.now().plusDays(7)) + .build(); + caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - @Test - public void testAddToCaseWithMultipleCaseDataEntries() { - // Given - caseDataMap.put("applicantName", "John Doe"); - caseDataMap.put("respondentName", "Jane Doe"); - caseDataMap.put("caseType", "C100"); - caseDataMap.put("eventId", "123456"); - when(objectMapper.convertValue(eq(caseDataMap), eq(AwaitingInformation.class))) - .thenReturn(awaitingInformation); - - // When - Map result = awaitingInformationService.addToCase(callbackRequest); - - // Then - assertNotNull(result); - assertEquals("John Doe", result.get("applicantName")); - assertEquals("Jane Doe", result.get("respondentName")); - assertEquals("C100", result.get("caseType")); - assertEquals("123456", result.get("eventId")); - assertTrue(result.containsKey(CASE_STATUS)); - } + when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + .thenReturn(awaitingInfo); + List errors = awaitingInformationService.validate(callbackRequest); + assertTrue(errors.isEmpty()); + verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); + } } - From d3709faec42ddc608aadc4f7ecaa20650d33332d Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Mon, 2 Mar 2026 13:26:01 +0000 Subject: [PATCH 34/42] FPVTL-2022 case event name change from Awaiting Information to Request Further Information --- .../hmcts/reform/prl/services/AwaitingInformationService.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java index 9b63f1241e4..47b40aaaf29 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java @@ -8,7 +8,6 @@ import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; -import uk.gov.hmcts.reform.prl.services.tab.summary.CaseSummaryTabService; import uk.gov.hmcts.reform.prl.utils.CaseUtils; import java.time.LocalDate; From 38167ef3a5a9dfed76307f58681694f09cd6b05d Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Wed, 4 Mar 2026 10:57:41 +0000 Subject: [PATCH 35/42] FPVTL-2022 case event name change from Awaiting Information to Request Further Information --- ...InformationControllerIntegrationTest.java} | 66 +++++++++---------- ... RequestFurtherInformationController.java} | 16 ++--- ...on.java => RequestFurtherInformation.java} | 2 +- ... => RequestFurtherInformaitonService.java} | 6 +- ...uestFurtherInformationControllerTest.java} | 60 ++++++++--------- ...RequestFurtherInformationServiceTest.java} | 36 +++++----- 6 files changed, 92 insertions(+), 94 deletions(-) rename src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/{AwaitingInformationControllerIntegrationTest.java => RequestFurtherInformationControllerIntegrationTest.java} (83%) rename src/main/java/uk/gov/hmcts/reform/prl/controllers/{AwaitingInformationController.java => RequestFurtherInformationController.java} (83%) rename src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/{AwaitingInformation.java => RequestFurtherInformation.java} (94%) rename src/main/java/uk/gov/hmcts/reform/prl/services/{AwaitingInformationService.java => RequestFurtherInformaitonService.java} (92%) rename src/test/java/uk/gov/hmcts/reform/prl/controllers/{AwaitingInformationControllerTest.java => RequestFurtherInformationControllerTest.java} (71%) rename src/test/java/uk/gov/hmcts/reform/prl/services/{AwaitingInformationServiceTest.java => RequestFurtherInformationServiceTest.java} (68%) diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerIntegrationTest.java similarity index 83% rename from src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java rename to src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerIntegrationTest.java index 96461552f60..8825452ed00 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerIntegrationTest.java @@ -17,8 +17,8 @@ import uk.gov.hmcts.reform.prl.ResourceLoader; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.services.AuthorisationService; -import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; +import uk.gov.hmcts.reform.prl.services.RequestFurtherInformaitonService; import java.util.ArrayList; import java.util.HashMap; @@ -40,7 +40,7 @@ }) @RunWith(SpringRunner.class) @ContextConfiguration -public class AwaitingInformationControllerIntegrationTest { +public class RequestFurtherInformationControllerIntegrationTest { private MockMvc mockMvc; @@ -51,7 +51,7 @@ public class AwaitingInformationControllerIntegrationTest { private AuthorisationService authorisationService; @MockBean - private AwaitingInformationService awaitingInformationService; + private RequestFurtherInformaitonService requestFurtherInformaitonService; @MockBean private FeatureToggleService featureToggleService; @@ -78,15 +78,15 @@ private Map createMockCaseData() { return caseData; } - // Tests for /submit-awaiting-information endpoint + // Tests for /submit-request-further-information endpoint @Test public void shouldSubmitAwaitingInformationSuccessfully() throws Exception { - String url = "/submit-awaiting-information"; + String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); mockMvc.perform( post(url) @@ -102,7 +102,7 @@ public void shouldSubmitAwaitingInformationSuccessfully() throws Exception { @Test public void shouldRejectSubmitAwaitingInformationWithoutAuthorizationHeader() throws Exception { - String url = "/submit-awaiting-information"; + String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( @@ -117,7 +117,7 @@ public void shouldRejectSubmitAwaitingInformationWithoutAuthorizationHeader() th @Test public void shouldRejectSubmitAwaitingInformationWithoutServiceAuthorizationHeader() throws Exception { - String url = "/submit-awaiting-information"; + String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( @@ -132,7 +132,7 @@ public void shouldRejectSubmitAwaitingInformationWithoutServiceAuthorizationHead @Test public void shouldRejectSubmitAwaitingInformationWithUnauthorizedTokens() throws Exception { - String url = "/submit-awaiting-information"; + String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(false); @@ -150,11 +150,11 @@ public void shouldRejectSubmitAwaitingInformationWithUnauthorizedTokens() throws @Test public void shouldSubmitAwaitingInformationWithValidHeaders() throws Exception { - String url = "/submit-awaiting-information"; + String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)).thenReturn(true); - when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); mockMvc.perform( post(url) @@ -175,9 +175,9 @@ public void shouldHandleSubmitAwaitingInformationWithAdditionalCaseData() throws caseData.put("respondentName", "Jane Doe"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())).thenReturn(caseData); + when(requestFurtherInformaitonService.addToCase(any())).thenReturn(caseData); - String url = "/submit-awaiting-information"; + String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( @@ -193,14 +193,14 @@ public void shouldHandleSubmitAwaitingInformationWithAdditionalCaseData() throws .andReturn(); } - // Tests for /validate-awaiting-information endpoint + // Tests for /validate-request-further-information endpoint @Test public void shouldValidateAwaitingInformationSuccessfully() throws Exception { - String url = "/validate-awaiting-information"; + String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); mockMvc.perform( @@ -215,13 +215,13 @@ public void shouldValidateAwaitingInformationSuccessfully() throws Exception { @Test public void shouldValidateAwaitingInformationWithErrors() throws Exception { - String url = "/validate-awaiting-information"; + String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); List errorList = new ArrayList<>(); errorList.add("Please enter a future date"); - when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(errorList); mockMvc.perform( @@ -241,10 +241,10 @@ public void shouldValidateAwaitingInformationWithMultipleErrors() throws Excepti errorList.add("Please enter a future date"); errorList.add("Review date cannot be more than 12 months away"); - when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(errorList); - String url = "/validate-awaiting-information"; + String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); mockMvc.perform( post(url) @@ -258,7 +258,7 @@ public void shouldValidateAwaitingInformationWithMultipleErrors() throws Excepti @Test public void shouldValidateAwaitingInformationReturnEmptyErrorsWhenFeatureToggleDisabled() throws Exception { - String url = "/validate-awaiting-information"; + String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); @@ -275,10 +275,10 @@ public void shouldValidateAwaitingInformationReturnEmptyErrorsWhenFeatureToggleD @Test public void shouldValidateAwaitingInformationWithCorrectContentType() throws Exception { - String url = "/validate-awaiting-information"; + String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); mockMvc.perform( @@ -292,10 +292,10 @@ public void shouldValidateAwaitingInformationWithCorrectContentType() throws Exc @Test public void shouldHandleValidateAwaitingInformationWithoutContentType() throws Exception { - String url = "/validate-awaiting-information"; + String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); mockMvc.perform( @@ -309,13 +309,13 @@ public void shouldHandleValidateAwaitingInformationWithoutContentType() throws E @Test public void shouldHandleCompleteAwaitingInformationWorkflow() throws Exception { - String submitUrl = "/submit-awaiting-information"; - String validateUrl = "/validate-awaiting-information"; + String submitUrl = "/submit-request-further-information"; + String validateUrl = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); - when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); // Submit awaiting information @@ -341,10 +341,10 @@ public void shouldHandleCompleteAwaitingInformationWorkflow() throws Exception { @Test public void shouldHandleSequentialValidationCalls() throws Exception { - String url = "/validate-awaiting-information"; + String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(awaitingInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); // First validation call @@ -368,11 +368,11 @@ public void shouldHandleSequentialValidationCalls() throws Exception { @Test public void shouldHandleMultipleSubmitCalls() throws Exception { - String url = "/submit-awaiting-information"; + String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(awaitingInformationService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); // First submit mockMvc.perform( diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java similarity index 83% rename from src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java rename to src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java index cd5d3c18b31..74920a4b70f 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java @@ -1,6 +1,5 @@ package uk.gov.hmcts.reform.prl.controllers; -import com.fasterxml.jackson.databind.ObjectMapper; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Parameter; import io.swagger.v3.oas.annotations.media.Content; @@ -21,8 +20,8 @@ import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; -import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; +import uk.gov.hmcts.reform.prl.services.RequestFurtherInformaitonService; import static java.util.Collections.emptyList; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; @@ -31,13 +30,12 @@ @Slf4j @RestController @RequiredArgsConstructor(onConstructor = @__(@Autowired)) -public class AwaitingInformationController { - private final AwaitingInformationService awaitingInformationService; - private final ObjectMapper objectMapper; +public class RequestFurtherInformationController { + private final RequestFurtherInformaitonService requestFurtherInformaitonService; private final AuthorisationService authorisationService; private final FeatureToggleService featureToggleService; - @PostMapping(path = "/submit-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) + @PostMapping(path = "/submit-request-further-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @Operation(description = "Awaiting On Information callback to update case data and set case status to awaiting information") @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Callback processed.", @@ -51,14 +49,14 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( ) { if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { - var caseDataUpdated = awaitingInformationService.addToCase(callbackRequest); + var caseDataUpdated = requestFurtherInformaitonService.addToCase(callbackRequest); return AboutToStartOrSubmitCallbackResponse.builder().data(caseDataUpdated).build(); } throw (new RuntimeException(INVALID_CLIENT)); } - @PostMapping(path = "/validate-awaiting-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) + @PostMapping(path = "/validate-request-further-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @Operation(description = "Callback to validate review date") @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Child details are fetched"), @@ -70,7 +68,7 @@ public CallbackResponse validateReviewDate(@RequestBody CallbackRequest callback .build(); } return CallbackResponse.builder() - .errors(awaitingInformationService.validate(callbackRequest)) + .errors(requestFurtherInformaitonService.validate(callbackRequest)) .build(); } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java b/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/RequestFurtherInformation.java similarity index 94% rename from src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java rename to src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/RequestFurtherInformation.java index f530271ac8b..924fea0c62b 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/AwaitingInformation.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/models/dto/ccd/RequestFurtherInformation.java @@ -14,7 +14,7 @@ @Builder(toBuilder = true) @AllArgsConstructor @JsonIgnoreProperties(ignoreUnknown = true) -public class AwaitingInformation { +public class RequestFurtherInformation { @JsonProperty("reviewByDate") private LocalDate reviewDate; @JsonProperty("requestFurtherInformationReasonList") diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformaitonService.java similarity index 92% rename from src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java rename to src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformaitonService.java index 47b40aaaf29..3611d93b993 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformaitonService.java @@ -7,7 +7,7 @@ import org.springframework.stereotype.Service; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; -import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.models.dto.ccd.RequestFurtherInformation; import uk.gov.hmcts.reform.prl.utils.CaseUtils; import java.time.LocalDate; @@ -24,7 +24,7 @@ @Builder @RequiredArgsConstructor @Service -public class AwaitingInformationService { +public class RequestFurtherInformaitonService { private final FeatureToggleService featureToggleService; private final ObjectMapper objectMapper; @@ -35,7 +35,7 @@ public List validate(CallbackRequest callbackRequest) { } var caseDataUpdated = addToCase(callbackRequest); var awaitingInformation = objectMapper.convertValue( - caseDataUpdated.get(REQUEST_FURTHER_INFORMATION_DETAILS), AwaitingInformation.class); + caseDataUpdated.get(REQUEST_FURTHER_INFORMATION_DETAILS), RequestFurtherInformation.class); List errorList = new ArrayList<>(); if (awaitingInformation.getReviewDate() != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java similarity index 71% rename from src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java rename to src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java index 19ebf7c9383..2e2c934bcab 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/AwaitingInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java @@ -13,8 +13,8 @@ import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; -import uk.gov.hmcts.reform.prl.services.AwaitingInformationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; +import uk.gov.hmcts.reform.prl.services.RequestFurtherInformaitonService; import java.util.ArrayList; import java.util.HashMap; @@ -33,13 +33,13 @@ import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; @RunWith(MockitoJUnitRunner.Silent.class) -public class AwaitingInformationControllerTest { +public class RequestFurtherInformationControllerTest { @InjectMocks - private AwaitingInformationController awaitingInformationController; + private RequestFurtherInformationController requestFurtherInformationController; @Mock - private AwaitingInformationService awaitingInformationService; + private RequestFurtherInformaitonService requestFurtherInformaitonService; @Mock private FeatureToggleService featureToggleService; @@ -84,16 +84,16 @@ public void setUp() { @Test public void shouldSubmitAwaitingInformationSuccessfully() { when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); assertNotNull(response); assertNotNull(response.getData()); assertTrue(response.getData().containsKey(CASE_STATUS)); verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - verify(awaitingInformationService, times(1)).addToCase(callbackRequest); + verify(requestFurtherInformaitonService, times(1)).addToCase(callbackRequest); } @Test @@ -101,11 +101,11 @@ public void shouldThrowExceptionWhenUnauthorized() { when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(false); RuntimeException exception = assertThrows(RuntimeException.class, () -> - awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); + requestFurtherInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); assertEquals("Invalid Client", exception.getMessage()); verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - verify(awaitingInformationService, times(0)).addToCase(any()); + verify(requestFurtherInformaitonService, times(0)).addToCase(any()); } @Test @@ -114,10 +114,10 @@ public void shouldThrowExceptionWhenFeatureToggleDisabled() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); RuntimeException exception = assertThrows(RuntimeException.class, () -> - awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); + requestFurtherInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); assertEquals("Invalid Client", exception.getMessage()); - verify(awaitingInformationService, times(0)).addToCase(any()); + verify(requestFurtherInformaitonService, times(0)).addToCase(any()); } @Test @@ -128,9 +128,9 @@ public void shouldPreserveExistingCaseDataWhenSubmitting() { updatedCaseData.put("respondentName", "Jane Doe"); when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); assertNotNull(response.getData()); @@ -142,9 +142,9 @@ public void shouldPreserveExistingCaseDataWhenSubmitting() { public void shouldHandleNullCaseData() { Map emptyCaseData = new HashMap<>(); when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(emptyCaseData); + when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(emptyCaseData); - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); assertNotNull(response); @@ -156,14 +156,14 @@ public void shouldHandleNullCaseData() { @Test public void shouldValidateReviewDateSuccessfully() { List emptyErrors = new ArrayList<>(); - when(awaitingInformationService.validate(callbackRequest)).thenReturn(emptyErrors); + when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(emptyErrors); - CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); assertNotNull(response); assertNotNull(response.getErrors()); assertTrue(response.getErrors().isEmpty()); - verify(awaitingInformationService, times(1)).validate(callbackRequest); + verify(requestFurtherInformaitonService, times(1)).validate(callbackRequest); } @Test @@ -171,9 +171,9 @@ public void shouldReturnValidationErrorsForInvalidDate() { List errorList = new ArrayList<>(); errorList.add("Please enter a future date"); - when(awaitingInformationService.validate(callbackRequest)).thenReturn(errorList); + when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(errorList); - CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); assertNotNull(response); assertEquals(1, response.getErrors().size()); @@ -184,7 +184,7 @@ public void shouldReturnValidationErrorsForInvalidDate() { public void shouldReturnEmptyErrorsWhenFeatureToggleDisabled() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); - CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); assertNotNull(response); assertTrue(response.getErrors().isEmpty()); @@ -196,21 +196,21 @@ public void shouldReturnMultipleValidationErrors() { errorList.add("Please enter a future date"); errorList.add("Review date cannot be more than 12 months away"); - when(awaitingInformationService.validate(callbackRequest)).thenReturn(errorList); + when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(errorList); - CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); assertNotNull(response); assertEquals(2, response.getErrors().size()); - verify(awaitingInformationService, times(1)).validate(callbackRequest); + verify(requestFurtherInformaitonService, times(1)).validate(callbackRequest); } @Test public void shouldCallFeatureToggleServiceBeforeValidation() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); - when(awaitingInformationService.validate(callbackRequest)).thenReturn(new ArrayList<>()); + when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(new ArrayList<>()); - CallbackResponse response = awaitingInformationController.validateReviewDate(callbackRequest); + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); assertNotNull(response); verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); @@ -224,9 +224,9 @@ public void shouldHandleCaseDataWithMultipleFields() { updatedCaseData.put("eventId", "123456"); when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); - AboutToStartOrSubmitCallbackResponse response = awaitingInformationController + AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); assertNotNull(response.getData()); @@ -237,9 +237,9 @@ public void shouldHandleCaseDataWithMultipleFields() { @Test public void shouldVerifyCorrectHeadersUsedInSubmit() { when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(awaitingInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); - awaitingInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); + requestFurtherInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); verify(authorisationService, times(1)).isAuthorized(eq(AUTH_TOKEN), eq(S2S_TOKEN)); } diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java similarity index 68% rename from src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java rename to src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java index 1c3ff4a7225..9e04ba46bd0 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/AwaitingInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java @@ -10,7 +10,7 @@ import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; -import uk.gov.hmcts.reform.prl.models.dto.ccd.AwaitingInformation; +import uk.gov.hmcts.reform.prl.models.dto.ccd.RequestFurtherInformation; import java.time.LocalDate; import java.util.HashMap; @@ -25,10 +25,10 @@ import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @RunWith(MockitoJUnitRunner.Silent.class) -public class AwaitingInformationServiceTest { +public class RequestFurtherInformationServiceTest { @InjectMocks - private AwaitingInformationService awaitingInformationService; + private RequestFurtherInformaitonService requestFurtherInformaitonService; @Mock private FeatureToggleService featureToggleService; @@ -60,16 +60,16 @@ public void setUp() { @Test public void validateSuccessfullyProcessesValidFutureDate() { - AwaitingInformation awaitingInfo = AwaitingInformation.builder() + RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() .reviewDate(LocalDate.now().plusDays(10)) .build(); caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = awaitingInformationService.validate(callbackRequest); + List errors = requestFurtherInformaitonService.validate(callbackRequest); assertTrue(errors.isEmpty()); verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); @@ -77,16 +77,16 @@ public void validateSuccessfullyProcessesValidFutureDate() { @Test public void validateHandlesNullReviewDateWithoutError() { - AwaitingInformation awaitingInfo = AwaitingInformation.builder() + RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() .reviewDate(null) .build(); caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = awaitingInformationService.validate(callbackRequest); + List errors = requestFurtherInformaitonService.validate(callbackRequest); assertTrue(errors.isEmpty()); } @@ -95,42 +95,42 @@ public void validateHandlesNullReviewDateWithoutError() { public void validateReturnsEmptyListWhenAwaitingInformationIsNull() { caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, null); - when(objectMapper.convertValue(null, AwaitingInformation.class)) - .thenReturn(AwaitingInformation.builder().reviewDate(null).build()); + when(objectMapper.convertValue(null, RequestFurtherInformation.class)) + .thenReturn(RequestFurtherInformation.builder().reviewDate(null).build()); - List errors = awaitingInformationService.validate(callbackRequest); + List errors = requestFurtherInformaitonService.validate(callbackRequest); assertTrue(errors.isEmpty()); } @Test public void validateReturnsErrorMessageExactlyAsConfigured() { - AwaitingInformation awaitingInfo = AwaitingInformation.builder() + RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() .reviewDate(LocalDate.now().minusDays(1)) .build(); caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = awaitingInformationService.validate(callbackRequest); + List errors = requestFurtherInformaitonService.validate(callbackRequest); assertEquals("Please enter a future date", errors.getFirst()); } @Test public void validateProcessesCallbackRequestCorrectly() { - AwaitingInformation awaitingInfo = AwaitingInformation.builder() + RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() .reviewDate(LocalDate.now().plusDays(7)) .build(); caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - when(objectMapper.convertValue(awaitingInfo, AwaitingInformation.class)) + when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = awaitingInformationService.validate(callbackRequest); + List errors = requestFurtherInformaitonService.validate(callbackRequest); assertTrue(errors.isEmpty()); verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); From 3b724ddaabe6f0946dd594e7cdb1d54e68386f32 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Fri, 6 Mar 2026 15:44:19 +0000 Subject: [PATCH 36/42] FPVTL-2022 history Tab --- ...rInformationControllerIntegrationTest.java | 28 +-- .../RequestFurtherInformationController.java | 33 +++- .../RequestFurtherInformaitonService.java | 57 ------ .../RequestFurtherInformationService.java | 186 ++++++++++++++++++ ...questFurtherInformationControllerTest.java | 32 +-- .../RequestFurtherInformationServiceTest.java | 12 +- 6 files changed, 251 insertions(+), 97 deletions(-) delete mode 100644 src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformaitonService.java create mode 100644 src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java diff --git a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerIntegrationTest.java b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerIntegrationTest.java index 8825452ed00..2cb08ee246a 100644 --- a/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerIntegrationTest.java +++ b/src/integrationTest/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerIntegrationTest.java @@ -18,7 +18,7 @@ import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; -import uk.gov.hmcts.reform.prl.services.RequestFurtherInformaitonService; +import uk.gov.hmcts.reform.prl.services.RequestFurtherInformationService; import java.util.ArrayList; import java.util.HashMap; @@ -51,7 +51,7 @@ public class RequestFurtherInformationControllerIntegrationTest { private AuthorisationService authorisationService; @MockBean - private RequestFurtherInformaitonService requestFurtherInformaitonService; + private RequestFurtherInformationService requestFurtherInformationService; @MockBean private FeatureToggleService featureToggleService; @@ -86,7 +86,7 @@ public void shouldSubmitAwaitingInformationSuccessfully() throws Exception { String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformationService.addToCase(any())).thenReturn(createMockCaseData()); mockMvc.perform( post(url) @@ -154,7 +154,7 @@ public void shouldSubmitAwaitingInformationWithValidHeaders() throws Exception { String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(TEST_AUTH_TOKEN, TEST_SERVICE_AUTH_TOKEN)).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformationService.addToCase(any())).thenReturn(createMockCaseData()); mockMvc.perform( post(url) @@ -175,7 +175,7 @@ public void shouldHandleSubmitAwaitingInformationWithAdditionalCaseData() throws caseData.put("respondentName", "Jane Doe"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(any())).thenReturn(caseData); + when(requestFurtherInformationService.addToCase(any())).thenReturn(caseData); String url = "/submit-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); @@ -200,7 +200,7 @@ public void shouldValidateAwaitingInformationSuccessfully() throws Exception { String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); mockMvc.perform( @@ -221,7 +221,7 @@ public void shouldValidateAwaitingInformationWithErrors() throws Exception { List errorList = new ArrayList<>(); errorList.add("Please enter a future date"); - when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(errorList); mockMvc.perform( @@ -241,7 +241,7 @@ public void shouldValidateAwaitingInformationWithMultipleErrors() throws Excepti errorList.add("Please enter a future date"); errorList.add("Review date cannot be more than 12 months away"); - when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(errorList); String url = "/validate-request-further-information"; @@ -278,7 +278,7 @@ public void shouldValidateAwaitingInformationWithCorrectContentType() throws Exc String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); mockMvc.perform( @@ -295,7 +295,7 @@ public void shouldHandleValidateAwaitingInformationWithoutContentType() throws E String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); mockMvc.perform( @@ -314,8 +314,8 @@ public void shouldHandleCompleteAwaitingInformationWorkflow() throws Exception { String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); - when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformationService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); // Submit awaiting information @@ -344,7 +344,7 @@ public void shouldHandleSequentialValidationCalls() throws Exception { String url = "/validate-request-further-information"; String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); - when(requestFurtherInformaitonService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) + when(requestFurtherInformationService.validate(any(uk.gov.hmcts.reform.ccd.client.model.CallbackRequest.class))) .thenReturn(new ArrayList<>()); // First validation call @@ -372,7 +372,7 @@ public void shouldHandleMultipleSubmitCalls() throws Exception { String jsonRequest = ResourceLoader.loadJson("CallbackRequest.json"); when(authorisationService.isAuthorized(any(), any())).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(any())).thenReturn(createMockCaseData()); + when(requestFurtherInformationService.addToCase(any())).thenReturn(createMockCaseData()); // First submit mockMvc.perform( diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java index 74920a4b70f..56af17bb668 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java @@ -11,29 +11,33 @@ import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpHeaders; +import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestHeader; import org.springframework.web.bind.annotation.RestController; import uk.gov.hmcts.reform.ccd.client.model.AboutToStartOrSubmitCallbackResponse; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; +import uk.gov.hmcts.reform.ccd.client.model.SubmittedCallbackResponse; import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; -import uk.gov.hmcts.reform.prl.services.RequestFurtherInformaitonService; +import uk.gov.hmcts.reform.prl.services.RequestFurtherInformationService; import static java.util.Collections.emptyList; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.springframework.http.ResponseEntity.ok; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.INVALID_CLIENT; @Slf4j @RestController @RequiredArgsConstructor(onConstructor = @__(@Autowired)) public class RequestFurtherInformationController { - private final RequestFurtherInformaitonService requestFurtherInformaitonService; + private final RequestFurtherInformationService requestFurtherInformationService; private final AuthorisationService authorisationService; private final FeatureToggleService featureToggleService; + public static final String CONFIRMATION_HEADER = "confirmationHeader"; @PostMapping(path = "/submit-request-further-information", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @Operation(description = "Awaiting On Information callback to update case data and set case status to awaiting information") @@ -49,7 +53,7 @@ public AboutToStartOrSubmitCallbackResponse submitAwaitingInformation( ) { if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { - var caseDataUpdated = requestFurtherInformaitonService.addToCase(callbackRequest); + var caseDataUpdated = requestFurtherInformationService.addToCase(callbackRequest); return AboutToStartOrSubmitCallbackResponse.builder().data(caseDataUpdated).build(); } throw (new RuntimeException(INVALID_CLIENT)); @@ -68,7 +72,28 @@ public CallbackResponse validateReviewDate(@RequestBody CallbackRequest callback .build(); } return CallbackResponse.builder() - .errors(requestFurtherInformaitonService.validate(callbackRequest)) + .errors(requestFurtherInformationService.validate(callbackRequest)) .build(); } + + @PostMapping(path = "/history-update", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) + @Operation(description = "Callback to update History Tab with Awaiting Information . Returns service request reference if " + + "successful") + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "Callback processed.", + content = @Content(mediaType = "application/json", + schema = @Schema(implementation = uk.gov.hmcts.reform.ccd.client.model.CallbackResponse.class))), + @ApiResponse(responseCode = "400", description = "Bad Request", content = @Content)}) + public ResponseEntity historyUpdated( + @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, + @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, + @RequestBody CallbackRequest callbackRequest) { + + if (authorisationService.isAuthorized(authorisation, s2sToken) + && featureToggleService.isAwaitingInformationEnabled()) { + requestFurtherInformationService.updateHistoryTab(callbackRequest, authorisation,s2sToken); + return ok(SubmittedCallbackResponse.builder().build()); + } + throw (new RuntimeException(INVALID_CLIENT)); + } } diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformaitonService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformaitonService.java deleted file mode 100644 index 3611d93b993..00000000000 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformaitonService.java +++ /dev/null @@ -1,57 +0,0 @@ -package uk.gov.hmcts.reform.prl.services; - -import com.fasterxml.jackson.databind.ObjectMapper; -import lombok.Builder; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; -import org.springframework.stereotype.Service; -import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; -import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; -import uk.gov.hmcts.reform.prl.models.dto.ccd.RequestFurtherInformation; -import uk.gov.hmcts.reform.prl.utils.CaseUtils; - -import java.time.LocalDate; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -import static java.util.Collections.emptyList; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS; -import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; - -@Slf4j -@Builder -@RequiredArgsConstructor -@Service -public class RequestFurtherInformaitonService { - - private final FeatureToggleService featureToggleService; - private final ObjectMapper objectMapper; - - public List validate(CallbackRequest callbackRequest) { - if (!featureToggleService.isAwaitingInformationEnabled()) { - return emptyList(); - } - var caseDataUpdated = addToCase(callbackRequest); - var awaitingInformation = objectMapper.convertValue( - caseDataUpdated.get(REQUEST_FURTHER_INFORMATION_DETAILS), RequestFurtherInformation.class); - List errorList = new ArrayList<>(); - if (awaitingInformation.getReviewDate() - != null && !awaitingInformation.getReviewDate().isAfter(LocalDate.now())) { - errorList.add("Please enter a future date"); - } - return errorList; - } - - public Map addToCase(CallbackRequest callbackRequest) { - Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); - caseDataUpdated.put( - CASE_STATUS, CaseStatus.builder() - .state(AWAITING_INFORMATION.getLabel()) - .build() - ); - CaseUtils.setCaseState(callbackRequest, caseDataUpdated); - return caseDataUpdated; - } -} diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java new file mode 100644 index 00000000000..2c3bd5975f9 --- /dev/null +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java @@ -0,0 +1,186 @@ +package uk.gov.hmcts.reform.prl.services; + +import com.fasterxml.jackson.databind.ObjectMapper; +import lombok.Builder; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import uk.gov.hmcts.reform.ccd.client.model.*; +import uk.gov.hmcts.reform.prl.clients.ccd.CcdCoreCaseDataService; +import uk.gov.hmcts.reform.prl.enums.CaseEvent; +import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; +import uk.gov.hmcts.reform.prl.models.dto.ccd.RequestFurtherInformation; +import uk.gov.hmcts.reform.prl.utils.CaseUtils; + +import java.time.LocalDate; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +import static java.lang.String.valueOf; +import static java.util.Collections.emptyList; +import static java.util.stream.Collectors.joining; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.*; +import static uk.gov.hmcts.reform.prl.enums.CaseEvent.REQUEST_FURTHER_INFORMATION; +import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; + +@Slf4j +@Builder +@RequiredArgsConstructor +@Service +public class RequestFurtherInformationService { + + private final FeatureToggleService featureToggleService; + private final ObjectMapper objectMapper; + private final CcdCoreCaseDataService ccdCoreCaseDataService; + private final SystemUserService systemUserService; + + public List validate(CallbackRequest callbackRequest) { + if (!featureToggleService.isAwaitingInformationEnabled()) { + return emptyList(); + } + var caseDataUpdated = addToCase(callbackRequest); + var requestFurtherInformation = getRequestFurtherInformation(caseDataUpdated); + var errorList = new ArrayList(); + if (requestFurtherInformation.getReviewDate() + != null && !requestFurtherInformation.getReviewDate().isAfter(LocalDate.now())) { + errorList.add("Please enter a future date"); + } + return errorList; + } + + public Map addToCase(CallbackRequest callbackRequest) { + Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); + caseDataUpdated.put( + CASE_STATUS, CaseStatus.builder() + .state(AWAITING_INFORMATION.getLabel()) + .build() + ); + CaseUtils.setCaseState(callbackRequest, caseDataUpdated); + return caseDataUpdated; + } + + private RequestFurtherInformation getRequestFurtherInformation(Map caseDataUpdated) { + var requestFurtherInformation = objectMapper.convertValue( + caseDataUpdated.get(REQUEST_FURTHER_INFORMATION_DETAILS), + RequestFurtherInformation.class + ); + return requestFurtherInformation; + } + + /** + * Builds event description from RequestFurtherInformation data. + * Combines reviewDate and requestFurtherInformationReasonEnum into a formatted string. + * + * @param requestFurtherInformation The RequestFurtherInformation object + * @return Formatted event description string + */ + private Event buildEventWithDescription(RequestFurtherInformation requestFurtherInformation) { + StringBuilder description = new StringBuilder(); + // Add review date to description + if (requestFurtherInformation.getReviewDate() != null) { + description.append("Review By Date: ") + .append(requestFurtherInformation.getReviewDate()); + } + // Add reasons to description + if (requestFurtherInformation.getRequestFurtherInformationReasonEnum() != null + && !requestFurtherInformation.getRequestFurtherInformationReasonEnum().isEmpty()) { + if (description.length() > 0) { + description.append(" | "); + } + String reasons = requestFurtherInformation.getRequestFurtherInformationReasonEnum() + .stream() + .map(reason -> reason.getDisplayedValue()) + .collect(joining(", ")); + description.append("Reasons: ").append(reasons); + } + // Create Event with description + return Event.builder() + .id(REQUEST_FURTHER_INFORMATION_DETAILS) + .description(description.toString()) + .build(); + } + + public CaseDetails updateHistoryTab(CallbackRequest callbackRequest, String authorisationComingFromAPI, String s2sTokenComingFromAPI) { + log.info("CCCCCCCCCCCCCCCCCCCCCCc In method During RequestFurtherInformation with event description"); + String caseId = valueOf(callbackRequest.getCaseDetails().getId()); + log.info("CCCCCCCCCCCCCCCCCCCCCCc Case ID : {}", caseId); + String systemAuthToken = systemUserService.getSysUserToken(); + log.info("CCCCCCCCCCCCCCCCCCCCCCc systemAuthToken : {}", systemAuthToken); + String systemUpdateUserId = systemUserService.getUserId(systemAuthToken); + log.info("CCCCCCCCCCCCCCCCCCCCCCc systemAuthToken : {}", systemUpdateUserId); + + EventRequestData eventRequestData = ccdCoreCaseDataService.eventRequest( + CaseEvent.REQUEST_FURTHER_INFORMATION, + systemUpdateUserId + ); + log.info("CCCCCCCCCCCCCCCCCCCCCCc eventRequestData : {}", eventRequestData); + StartEventResponse startEventResponse = + ccdCoreCaseDataService.startUpdate( + systemAuthToken, + eventRequestData, + caseId, + true + ); + log.info("CCCCCCCCCCCCCCCCCCCCCCc startEventResponse : {}", startEventResponse); + var requestFurtherInformation = getRequestFurtherInformation(callbackRequest.getCaseDetails().getData()); + log.info("CCCCCCCCCCCCCCCCCCCCCCc requestFurtherInformation : {}", requestFurtherInformation); + CaseDataContent caseDataContent = CaseDataContent.builder() + .eventToken(startEventResponse.getToken()) + .event(buildEventWithDescription(requestFurtherInformation)) + .data(startEventResponse.getCaseDetails().getData()) + .build(); + log.info("CCCCCCCCCCCCCCCCCCCCCCc caseDataContent : {}", caseDataContent); + CaseDetails caseDetails = null; + try { + caseDetails = ccdCoreCaseDataService.submitUpdate( + systemAuthToken, + eventRequestData, + caseDataContent, + caseId, + true + ); + } catch (RuntimeException ex) { + log.error( + "CCCCCCCCCCCCCCCCCCCCCCc systemAuthToken UnauthorizedException while updating history tab for caseId {}: {}", + caseId, + ex.getMessage() + ); + } + + try { + caseDetails = ccdCoreCaseDataService.submitUpdate( + s2sTokenComingFromAPI, + eventRequestData, + caseDataContent, + caseId, + true + ); + } catch (RuntimeException ex) { + log.error( + "CCCCCCCCCCCCCCCCCCCCCCB s2sTokenComingFromAPI UnauthorizedException while updating history tab for caseId {}: {}", + caseId, + ex.getMessage() + ); + } + + try { + caseDetails = ccdCoreCaseDataService.submitUpdate( + authorisationComingFromAPI, + eventRequestData, + caseDataContent, + caseId, + true + ); + } catch (RuntimeException ex) { + log.error( + "CCCCCCCCCCCCCCCCCCCCCCB authorisationComingFromAPI UnauthorizedException while updating history tab for caseId {}: {}", + caseId, + ex.getMessage() + ); + } + log.info("CCCCCCCCCCCCCCCCCCCCCCc caseDetails : {}", caseDetails); + return caseDetails; + } + +} diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java index 2e2c934bcab..25181cfb53b 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java @@ -14,7 +14,7 @@ import uk.gov.hmcts.reform.prl.models.dto.ccd.CallbackResponse; import uk.gov.hmcts.reform.prl.services.AuthorisationService; import uk.gov.hmcts.reform.prl.services.FeatureToggleService; -import uk.gov.hmcts.reform.prl.services.RequestFurtherInformaitonService; +import uk.gov.hmcts.reform.prl.services.RequestFurtherInformationService; import java.util.ArrayList; import java.util.HashMap; @@ -39,7 +39,7 @@ public class RequestFurtherInformationControllerTest { private RequestFurtherInformationController requestFurtherInformationController; @Mock - private RequestFurtherInformaitonService requestFurtherInformaitonService; + private RequestFurtherInformationService requestFurtherInformationService; @Mock private FeatureToggleService featureToggleService; @@ -84,7 +84,7 @@ public void setUp() { @Test public void shouldSubmitAwaitingInformationSuccessfully() { when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); @@ -93,7 +93,7 @@ public void shouldSubmitAwaitingInformationSuccessfully() { assertNotNull(response.getData()); assertTrue(response.getData().containsKey(CASE_STATUS)); verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - verify(requestFurtherInformaitonService, times(1)).addToCase(callbackRequest); + verify(requestFurtherInformationService, times(1)).addToCase(callbackRequest); } @Test @@ -105,7 +105,7 @@ public void shouldThrowExceptionWhenUnauthorized() { assertEquals("Invalid Client", exception.getMessage()); verify(authorisationService, times(1)).isAuthorized(AUTH_TOKEN, S2S_TOKEN); - verify(requestFurtherInformaitonService, times(0)).addToCase(any()); + verify(requestFurtherInformationService, times(0)).addToCase(any()); } @Test @@ -117,7 +117,7 @@ public void shouldThrowExceptionWhenFeatureToggleDisabled() { requestFurtherInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); assertEquals("Invalid Client", exception.getMessage()); - verify(requestFurtherInformaitonService, times(0)).addToCase(any()); + verify(requestFurtherInformationService, times(0)).addToCase(any()); } @Test @@ -128,7 +128,7 @@ public void shouldPreserveExistingCaseDataWhenSubmitting() { updatedCaseData.put("respondentName", "Jane Doe"); when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); @@ -142,7 +142,7 @@ public void shouldPreserveExistingCaseDataWhenSubmitting() { public void shouldHandleNullCaseData() { Map emptyCaseData = new HashMap<>(); when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(emptyCaseData); + when(requestFurtherInformationService.addToCase(callbackRequest)).thenReturn(emptyCaseData); AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); @@ -156,14 +156,14 @@ public void shouldHandleNullCaseData() { @Test public void shouldValidateReviewDateSuccessfully() { List emptyErrors = new ArrayList<>(); - when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(emptyErrors); + when(requestFurtherInformationService.validate(callbackRequest)).thenReturn(emptyErrors); CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); assertNotNull(response); assertNotNull(response.getErrors()); assertTrue(response.getErrors().isEmpty()); - verify(requestFurtherInformaitonService, times(1)).validate(callbackRequest); + verify(requestFurtherInformationService, times(1)).validate(callbackRequest); } @Test @@ -171,7 +171,7 @@ public void shouldReturnValidationErrorsForInvalidDate() { List errorList = new ArrayList<>(); errorList.add("Please enter a future date"); - when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(errorList); + when(requestFurtherInformationService.validate(callbackRequest)).thenReturn(errorList); CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); @@ -196,19 +196,19 @@ public void shouldReturnMultipleValidationErrors() { errorList.add("Please enter a future date"); errorList.add("Review date cannot be more than 12 months away"); - when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(errorList); + when(requestFurtherInformationService.validate(callbackRequest)).thenReturn(errorList); CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); assertNotNull(response); assertEquals(2, response.getErrors().size()); - verify(requestFurtherInformaitonService, times(1)).validate(callbackRequest); + verify(requestFurtherInformationService, times(1)).validate(callbackRequest); } @Test public void shouldCallFeatureToggleServiceBeforeValidation() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); - when(requestFurtherInformaitonService.validate(callbackRequest)).thenReturn(new ArrayList<>()); + when(requestFurtherInformationService.validate(callbackRequest)).thenReturn(new ArrayList<>()); CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); @@ -224,7 +224,7 @@ public void shouldHandleCaseDataWithMultipleFields() { updatedCaseData.put("eventId", "123456"); when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); @@ -237,7 +237,7 @@ public void shouldHandleCaseDataWithMultipleFields() { @Test public void shouldVerifyCorrectHeadersUsedInSubmit() { when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); - when(requestFurtherInformaitonService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + when(requestFurtherInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); requestFurtherInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java index 9e04ba46bd0..3f3e04b6206 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java @@ -28,7 +28,7 @@ public class RequestFurtherInformationServiceTest { @InjectMocks - private RequestFurtherInformaitonService requestFurtherInformaitonService; + private RequestFurtherInformationService requestFurtherInformationService; @Mock private FeatureToggleService featureToggleService; @@ -69,7 +69,7 @@ public void validateSuccessfullyProcessesValidFutureDate() { when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = requestFurtherInformaitonService.validate(callbackRequest); + List errors = requestFurtherInformationService.validate(callbackRequest); assertTrue(errors.isEmpty()); verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); @@ -86,7 +86,7 @@ public void validateHandlesNullReviewDateWithoutError() { when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = requestFurtherInformaitonService.validate(callbackRequest); + List errors = requestFurtherInformationService.validate(callbackRequest); assertTrue(errors.isEmpty()); } @@ -98,7 +98,7 @@ public void validateReturnsEmptyListWhenAwaitingInformationIsNull() { when(objectMapper.convertValue(null, RequestFurtherInformation.class)) .thenReturn(RequestFurtherInformation.builder().reviewDate(null).build()); - List errors = requestFurtherInformaitonService.validate(callbackRequest); + List errors = requestFurtherInformationService.validate(callbackRequest); assertTrue(errors.isEmpty()); } @@ -114,7 +114,7 @@ public void validateReturnsErrorMessageExactlyAsConfigured() { when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = requestFurtherInformaitonService.validate(callbackRequest); + List errors = requestFurtherInformationService.validate(callbackRequest); assertEquals("Please enter a future date", errors.getFirst()); } @@ -130,7 +130,7 @@ public void validateProcessesCallbackRequestCorrectly() { when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); - List errors = requestFurtherInformaitonService.validate(callbackRequest); + List errors = requestFurtherInformationService.validate(callbackRequest); assertTrue(errors.isEmpty()); verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); From 211f397a683360385e43593338d9570663467d66 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Wed, 11 Mar 2026 15:05:39 +0000 Subject: [PATCH 37/42] FPVTL-2022 history Tab changes --- .../RequestFurtherInformationController.java | 6 +- .../gov/hmcts/reform/prl/enums/CaseEvent.java | 3 +- .../RequestFurtherInformationService.java | 132 ++++++------------ .../RequestFurtherInformationServiceTest.java | 67 +++++---- 4 files changed, 87 insertions(+), 121 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java index 56af17bb668..bff9d9abfb6 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationController.java @@ -71,9 +71,10 @@ public CallbackResponse validateReviewDate(@RequestBody CallbackRequest callback .errors(emptyList()) .build(); } - return CallbackResponse.builder() + CallbackResponse build = CallbackResponse.builder() .errors(requestFurtherInformationService.validate(callbackRequest)) .build(); + return build; } @PostMapping(path = "/history-update", consumes = APPLICATION_JSON, produces = APPLICATION_JSON) @@ -88,10 +89,9 @@ public ResponseEntity historyUpdated( @RequestHeader(HttpHeaders.AUTHORIZATION) @Parameter(hidden = true) String authorisation, @RequestHeader(PrlAppsConstants.SERVICE_AUTHORIZATION_HEADER) String s2sToken, @RequestBody CallbackRequest callbackRequest) { - if (authorisationService.isAuthorized(authorisation, s2sToken) && featureToggleService.isAwaitingInformationEnabled()) { - requestFurtherInformationService.updateHistoryTab(callbackRequest, authorisation,s2sToken); + requestFurtherInformationService.updateHistoryTab(callbackRequest); return ok(SubmittedCallbackResponse.builder().build()); } throw (new RuntimeException(INVALID_CLIENT)); diff --git a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java index 11236ff4a92..41598d56a80 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/enums/CaseEvent.java @@ -76,7 +76,8 @@ public enum CaseEvent { APPLICANT_DETAILS("applicantsDetails"), REVIEW_ADDITIONAL_APPLICATION("reviewAdditionalApplication"), CLOSE_REVIEW_RA_REQUEST_TASK("closeReviewRARequestTask"), - REQUEST_FURTHER_INFORMATION("requestFurtherInformation"); + REQUEST_FURTHER_INFORMATION("requestFurtherInformation"), + REQUEST_FURTHER_INFORMATION_HISTORY("requestFurtherInformationHistory"); private final String value; diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java index 2c3bd5975f9..a071116ed7f 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationService.java @@ -5,14 +5,18 @@ import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; -import uk.gov.hmcts.reform.ccd.client.model.*; +import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; +import uk.gov.hmcts.reform.ccd.client.model.CaseDataContent; +import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; +import uk.gov.hmcts.reform.ccd.client.model.Event; +import uk.gov.hmcts.reform.ccd.client.model.EventRequestData; import uk.gov.hmcts.reform.prl.clients.ccd.CcdCoreCaseDataService; -import uk.gov.hmcts.reform.prl.enums.CaseEvent; import uk.gov.hmcts.reform.prl.models.complextypes.tab.summarytab.summary.CaseStatus; import uk.gov.hmcts.reform.prl.models.dto.ccd.RequestFurtherInformation; import uk.gov.hmcts.reform.prl.utils.CaseUtils; import java.time.LocalDate; +import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.List; import java.util.Map; @@ -20,8 +24,10 @@ import static java.lang.String.valueOf; import static java.util.Collections.emptyList; import static java.util.stream.Collectors.joining; -import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.*; -import static uk.gov.hmcts.reform.prl.enums.CaseEvent.REQUEST_FURTHER_INFORMATION; +import static org.apache.commons.lang3.StringUtils.SPACE; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.CASE_STATUS; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS; +import static uk.gov.hmcts.reform.prl.enums.CaseEvent.REQUEST_FURTHER_INFORMATION_HISTORY; import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @Slf4j @@ -75,111 +81,61 @@ private RequestFurtherInformation getRequestFurtherInformation(Map 0) { - description.append(" | "); + description.append("\n"); } - String reasons = requestFurtherInformation.getRequestFurtherInformationReasonEnum() - .stream() - .map(reason -> reason.getDisplayedValue()) - .collect(joining(", ")); - description.append("Reasons: ").append(reasons); + description.append("Awaiting Information Reasons:\n"); + // Join all displayed values with newlines + String reasonText = reasons.stream() + .map(r -> r.getDisplayedValue()) + .collect(joining(", \n")); + description.append(reasonText); } + // Create Event with description return Event.builder() - .id(REQUEST_FURTHER_INFORMATION_DETAILS) + .id(REQUEST_FURTHER_INFORMATION_HISTORY.getValue()) .description(description.toString()) .build(); } - public CaseDetails updateHistoryTab(CallbackRequest callbackRequest, String authorisationComingFromAPI, String s2sTokenComingFromAPI) { - log.info("CCCCCCCCCCCCCCCCCCCCCCc In method During RequestFurtherInformation with event description"); - String caseId = valueOf(callbackRequest.getCaseDetails().getId()); - log.info("CCCCCCCCCCCCCCCCCCCCCCc Case ID : {}", caseId); + public CaseDetails updateHistoryTab(CallbackRequest callbackRequest) { String systemAuthToken = systemUserService.getSysUserToken(); - log.info("CCCCCCCCCCCCCCCCCCCCCCc systemAuthToken : {}", systemAuthToken); String systemUpdateUserId = systemUserService.getUserId(systemAuthToken); - log.info("CCCCCCCCCCCCCCCCCCCCCCc systemAuthToken : {}", systemUpdateUserId); EventRequestData eventRequestData = ccdCoreCaseDataService.eventRequest( - CaseEvent.REQUEST_FURTHER_INFORMATION, - systemUpdateUserId - ); - log.info("CCCCCCCCCCCCCCCCCCCCCCc eventRequestData : {}", eventRequestData); - StartEventResponse startEventResponse = - ccdCoreCaseDataService.startUpdate( - systemAuthToken, - eventRequestData, - caseId, - true - ); - log.info("CCCCCCCCCCCCCCCCCCCCCCc startEventResponse : {}", startEventResponse); - var requestFurtherInformation = getRequestFurtherInformation(callbackRequest.getCaseDetails().getData()); - log.info("CCCCCCCCCCCCCCCCCCCCCCc requestFurtherInformation : {}", requestFurtherInformation); - CaseDataContent caseDataContent = CaseDataContent.builder() + REQUEST_FURTHER_INFORMATION_HISTORY, systemUpdateUserId); + + String caseId = valueOf(callbackRequest.getCaseDetails().getId()); + var startEventResponse = + ccdCoreCaseDataService.startUpdate(systemAuthToken, eventRequestData, caseId, true); + var requestFurtherInformation = getRequestFurtherInformation(startEventResponse.getCaseDetails().getData()); + + var caseDataContent = CaseDataContent.builder() .eventToken(startEventResponse.getToken()) .event(buildEventWithDescription(requestFurtherInformation)) .data(startEventResponse.getCaseDetails().getData()) .build(); - log.info("CCCCCCCCCCCCCCCCCCCCCCc caseDataContent : {}", caseDataContent); - CaseDetails caseDetails = null; - try { - caseDetails = ccdCoreCaseDataService.submitUpdate( - systemAuthToken, - eventRequestData, - caseDataContent, - caseId, - true - ); - } catch (RuntimeException ex) { - log.error( - "CCCCCCCCCCCCCCCCCCCCCCc systemAuthToken UnauthorizedException while updating history tab for caseId {}: {}", - caseId, - ex.getMessage() - ); - } - - try { - caseDetails = ccdCoreCaseDataService.submitUpdate( - s2sTokenComingFromAPI, - eventRequestData, - caseDataContent, - caseId, - true - ); - } catch (RuntimeException ex) { - log.error( - "CCCCCCCCCCCCCCCCCCCCCCB s2sTokenComingFromAPI UnauthorizedException while updating history tab for caseId {}: {}", - caseId, - ex.getMessage() - ); - } - - try { - caseDetails = ccdCoreCaseDataService.submitUpdate( - authorisationComingFromAPI, - eventRequestData, - caseDataContent, - caseId, - true - ); - } catch (RuntimeException ex) { - log.error( - "CCCCCCCCCCCCCCCCCCCCCCB authorisationComingFromAPI UnauthorizedException while updating history tab for caseId {}: {}", - caseId, - ex.getMessage() - ); - } - log.info("CCCCCCCCCCCCCCCCCCCCCCc caseDetails : {}", caseDetails); + CaseDetails caseDetails = ccdCoreCaseDataService.submitUpdate( + systemAuthToken, eventRequestData, caseDataContent, caseId, true); + log.info("History tab updated for case id: {}", caseId); return caseDetails; } diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java index 3f3e04b6206..735096cda1c 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java @@ -9,10 +9,13 @@ import org.mockito.junit.MockitoJUnitRunner; import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; +import uk.gov.hmcts.reform.ccd.client.model.Event; import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; +import uk.gov.hmcts.reform.prl.enums.awaitinginformation.RequestFurtherInformationReasonEnum; import uk.gov.hmcts.reform.prl.models.dto.ccd.RequestFurtherInformation; import java.time.LocalDate; +import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -58,23 +61,6 @@ public void setUp() { when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); } - @Test - public void validateSuccessfullyProcessesValidFutureDate() { - RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() - .reviewDate(LocalDate.now().plusDays(10)) - .build(); - - caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - - when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) - .thenReturn(awaitingInfo); - - List errors = requestFurtherInformationService.validate(callbackRequest); - - assertTrue(errors.isEmpty()); - verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); - } - @Test public void validateHandlesNullReviewDateWithoutError() { RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() @@ -104,9 +90,9 @@ public void validateReturnsEmptyListWhenAwaitingInformationIsNull() { } @Test - public void validateReturnsErrorMessageExactlyAsConfigured() { + public void validateProcessesCallbackRequestCorrectly() { RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() - .reviewDate(LocalDate.now().minusDays(1)) + .reviewDate(LocalDate.now().plusDays(7)) .build(); caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); @@ -116,23 +102,46 @@ public void validateReturnsErrorMessageExactlyAsConfigured() { List errors = requestFurtherInformationService.validate(callbackRequest); - assertEquals("Please enter a future date", errors.getFirst()); + assertTrue(errors.isEmpty()); + verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); } + @Test - public void validateProcessesCallbackRequestCorrectly() { - RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() - .reviewDate(LocalDate.now().plusDays(7)) + public void buildEventWithDescription_HandlesNullReviewDate() { + // Given + RequestFurtherInformation requestFurtherInfo = RequestFurtherInformation.builder() + .reviewDate(null) + .requestFurtherInformationReasonEnum(Collections.singletonList( + RequestFurtherInformationReasonEnum.miamFurtherInformation + )) .build(); - caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); + // When + Event event = requestFurtherInformationService.buildEventWithDescription(requestFurtherInfo); - when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) - .thenReturn(awaitingInfo); + // Then + String expectedDescription = "Awaiting Information Reasons:\n" + + "MIAM - further information required"; - List errors = requestFurtherInformationService.validate(callbackRequest); + assertEquals(expectedDescription, event.getDescription()); + } - assertTrue(errors.isEmpty()); - verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); + @Test + public void buildEventWithDescription_HandlesNullDateAndNullReasons() { + // Given + RequestFurtherInformation requestFurtherInfo = RequestFurtherInformation.builder() + .reviewDate(null) + .requestFurtherInformationReasonEnum(null) + .build(); + + // When + Event event = requestFurtherInformationService.buildEventWithDescription(requestFurtherInfo); + + // Then + String expectedDescription = ""; + + assertEquals(expectedDescription, event.getDescription()); } + } From 1dae850d6257bf12138c2c5e44979688a2ffbcc6 Mon Sep 17 00:00:00 2001 From: Hari Maddali Date: Wed, 11 Mar 2026 16:10:06 +0000 Subject: [PATCH 38/42] FPVTL-2022 history Tab changes --- ...questFurtherInformationControllerTest.java | 140 +++++++++++++++- .../RequestFurtherInformationServiceTest.java | 151 +++++++++++++----- 2 files changed, 248 insertions(+), 43 deletions(-) diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java index 25181cfb53b..9d300ed09a5 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/RequestFurtherInformationControllerTest.java @@ -17,6 +17,7 @@ import uk.gov.hmcts.reform.prl.services.RequestFurtherInformationService; import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -243,5 +244,142 @@ public void shouldVerifyCorrectHeadersUsedInSubmit() { verify(authorisationService, times(1)).isAuthorized(eq(AUTH_TOKEN), eq(S2S_TOKEN)); } -} + + @Test + public void historyUpdated_ShouldSuccessfullyUpdateHistoryTab() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + + var response = requestFurtherInformationController.historyUpdated(AUTH_TOKEN, S2S_TOKEN, callbackRequest); + + assertNotNull(response); + assertEquals(200, response.getStatusCode().value()); + verify(requestFurtherInformationService, times(1)).updateHistoryTab(callbackRequest); + } + + @Test + public void historyUpdated_ThrowsExceptionWhenUnauthorized() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(false); + + assertThrows(RuntimeException.class, () -> + requestFurtherInformationController.historyUpdated(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); + + verify(requestFurtherInformationService, times(0)).updateHistoryTab(any()); + } + + @Test + public void historyUpdated_ThrowsExceptionWhenFeatureToggleDisabled() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); + + assertThrows(RuntimeException.class, () -> + requestFurtherInformationController.historyUpdated(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); + + verify(requestFurtherInformationService, times(0)).updateHistoryTab(any()); + } + + @Test + public void submitAwaitingInformation_WithValidTokens_Success() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(requestFurtherInformationService.addToCase(callbackRequest)).thenReturn(updatedCaseData); + + AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController + .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); + + assertNotNull(response); + assertNotNull(response.getData()); + } + + @Test + public void validateReviewDate_FeatureToggleEnabled_CallsService() { + List emptyErrors = new ArrayList<>(); + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(true); + when(requestFurtherInformationService.validate(callbackRequest)).thenReturn(emptyErrors); + + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); + + assertNotNull(response); + verify(requestFurtherInformationService, times(1)).validate(callbackRequest); + verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); + } + + @Test + public void submitAwaitingInformation_AuthorizationFails_ThrowsException() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(false); + + assertThrows(RuntimeException.class, () -> + requestFurtherInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); + + verify(requestFurtherInformationService, times(0)).addToCase(callbackRequest); + } + + @Test + public void submitAwaitingInformation_FeatureToggleDisabled_ThrowsException() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); + + assertThrows(RuntimeException.class, () -> + requestFurtherInformationController.submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest)); + + verify(requestFurtherInformationService, times(0)).addToCase(callbackRequest); + } + + @Test + public void validateReviewDate_MultipleErrors_ReturnsAllErrors() { + List errorList = new ArrayList<>(); + errorList.add("Error 1"); + errorList.add("Error 2"); + errorList.add("Error 3"); + + when(requestFurtherInformationService.validate(callbackRequest)).thenReturn(errorList); + + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); + + assertEquals(3, response.getErrors().size()); + } + + @Test + public void submitAwaitingInformation_EmptyCaseData_ReturnsResponse() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + Map emptyCaseData = new HashMap<>(); + when(requestFurtherInformationService.addToCase(callbackRequest)).thenReturn(emptyCaseData); + + AboutToStartOrSubmitCallbackResponse response = requestFurtherInformationController + .submitAwaitingInformation(AUTH_TOKEN, S2S_TOKEN, callbackRequest); + + assertNotNull(response.getData()); + assertTrue(response.getData().isEmpty()); + } + + @Test + public void historyUpdated_WithValidTokens_ReturnsOkStatus() { + when(authorisationService.isAuthorized(AUTH_TOKEN, S2S_TOKEN)).thenReturn(true); + + var response = requestFurtherInformationController.historyUpdated(AUTH_TOKEN, S2S_TOKEN, callbackRequest); + + assertEquals(200, response.getStatusCode().value()); + } + + @Test + public void validateReviewDate_FeatureDisabledAndErrorsExist_ReturnsEmptyErrors() { + when(featureToggleService.isAwaitingInformationEnabled()).thenReturn(false); + + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); + + assertTrue(response.getErrors().isEmpty()); + // Service should not be called when feature is disabled + verify(requestFurtherInformationService, times(0)).validate(any()); + } + + + @Test + public void validateReviewDate_NoErrorsReturned_ResponseIsEmpty() { + when(requestFurtherInformationService.validate(callbackRequest)).thenReturn(Collections.emptyList()); + + CallbackResponse response = requestFurtherInformationController.validateReviewDate(callbackRequest); + + assertNotNull(response); + assertNotNull(response.getErrors()); + assertEquals(0, response.getErrors().size()); + } +} diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java index 735096cda1c..fcd3559288d 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/RequestFurtherInformationServiceTest.java @@ -10,21 +10,20 @@ import uk.gov.hmcts.reform.ccd.client.model.CallbackRequest; import uk.gov.hmcts.reform.ccd.client.model.CaseDetails; import uk.gov.hmcts.reform.ccd.client.model.Event; -import uk.gov.hmcts.reform.prl.constants.PrlAppsConstants; import uk.gov.hmcts.reform.prl.enums.awaitinginformation.RequestFurtherInformationReasonEnum; import uk.gov.hmcts.reform.prl.models.dto.ccd.RequestFurtherInformation; import java.time.LocalDate; +import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; -import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; -import static org.mockito.Mockito.times; -import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS; import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; @RunWith(MockitoJUnitRunner.Silent.class) @@ -41,14 +40,16 @@ public class RequestFurtherInformationServiceTest { @Mock private CallbackRequest callbackRequest; + private Map caseDataMap; + private CaseDetails caseDetails; @Before public void setUp() { caseDataMap = new HashMap<>(); caseDataMap.put("id", 12345678L); - CaseDetails caseDetails = CaseDetails.builder() + caseDetails = CaseDetails.builder() .id(12345678L) .state(AWAITING_INFORMATION.getLabel()) .data(caseDataMap) @@ -62,13 +63,12 @@ public void setUp() { } @Test - public void validateHandlesNullReviewDateWithoutError() { + public void validate_FutureDate_NoErrors() { RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() - .reviewDate(null) + .reviewDate(LocalDate.now().plusDays(10)) .build(); - caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); - + caseDataMap.put(REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) .thenReturn(awaitingInfo); @@ -78,70 +78,137 @@ public void validateHandlesNullReviewDateWithoutError() { } @Test - public void validateReturnsEmptyListWhenAwaitingInformationIsNull() { - caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, null); + public void validate_PastDate_ReturnsError() { + RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() + .reviewDate(LocalDate.now().minusDays(1)) + .build(); - when(objectMapper.convertValue(null, RequestFurtherInformation.class)) - .thenReturn(RequestFurtherInformation.builder().reviewDate(null).build()); + caseDataMap.put(REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); + when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) + .thenReturn(awaitingInfo); List errors = requestFurtherInformationService.validate(callbackRequest); - assertTrue(errors.isEmpty()); + assertFalse(errors.isEmpty()); } @Test - public void validateProcessesCallbackRequestCorrectly() { - RequestFurtherInformation awaitingInfo = RequestFurtherInformation.builder() - .reviewDate(LocalDate.now().plusDays(7)) + public void buildEventWithDescription_WithSingleReason() { + RequestFurtherInformation info = RequestFurtherInformation.builder() + .reviewDate(LocalDate.of(2026, 3, 28)) + .requestFurtherInformationReasonEnum(Collections.singletonList( + RequestFurtherInformationReasonEnum.miamFurtherInformation + )) .build(); - caseDataMap.put(PrlAppsConstants.REQUEST_FURTHER_INFORMATION_DETAILS, awaitingInfo); + Event event = requestFurtherInformationService.buildEventWithDescription(info); - when(objectMapper.convertValue(awaitingInfo, RequestFurtherInformation.class)) - .thenReturn(awaitingInfo); + assertTrue(event.getDescription().contains("28 Mar 2026")); + assertTrue(event.getDescription().contains("MIAM - further information required")); + } - List errors = requestFurtherInformationService.validate(callbackRequest); + @Test + public void buildEventWithDescription_WithMultipleReasons() { + RequestFurtherInformation info = RequestFurtherInformation.builder() + .reviewDate(LocalDate.of(2026, 3, 28)) + .requestFurtherInformationReasonEnum(Arrays.asList( + RequestFurtherInformationReasonEnum.miamFurtherInformation, + RequestFurtherInformationReasonEnum.dwpHmrcWhereaboutsUnknown + )) + .build(); - assertTrue(errors.isEmpty()); - verify(featureToggleService, times(1)).isAwaitingInformationEnabled(); + Event event = requestFurtherInformationService.buildEventWithDescription(info); + + assertTrue(event.getDescription().contains("28 Mar 2026")); + assertTrue(event.getDescription().contains("MIAM - further information required")); + assertTrue(event.getDescription().contains("DWP/HMRC - whereabouts unknown")); } + @Test + public void buildEventWithDescription_DifferentMonths() { + RequestFurtherInformation jan = RequestFurtherInformation.builder() + .reviewDate(LocalDate.of(2026, 1, 5)) + .requestFurtherInformationReasonEnum(Collections.singletonList( + RequestFurtherInformationReasonEnum.miamFurtherInformation + )) + .build(); + + Event janEvent = requestFurtherInformationService.buildEventWithDescription(jan); + assertTrue(janEvent.getDescription().contains("05 Jan 2026")); + } @Test - public void buildEventWithDescription_HandlesNullReviewDate() { - // Given - RequestFurtherInformation requestFurtherInfo = RequestFurtherInformation.builder() + public void buildEventWithDescription_NullReviewDate() { + RequestFurtherInformation info = RequestFurtherInformation.builder() .reviewDate(null) .requestFurtherInformationReasonEnum(Collections.singletonList( RequestFurtherInformationReasonEnum.miamFurtherInformation )) .build(); - // When - Event event = requestFurtherInformationService.buildEventWithDescription(requestFurtherInfo); + Event event = requestFurtherInformationService.buildEventWithDescription(info); - // Then - String expectedDescription = "Awaiting Information Reasons:\n" - + "MIAM - further information required"; - - assertEquals(expectedDescription, event.getDescription()); + assertFalse(event.getDescription().contains("Review By Date:")); + assertTrue(event.getDescription().contains("MIAM - further information required")); } @Test - public void buildEventWithDescription_HandlesNullDateAndNullReasons() { - // Given - RequestFurtherInformation requestFurtherInfo = RequestFurtherInformation.builder() - .reviewDate(null) + public void buildEventWithDescription_NullReasons() { + RequestFurtherInformation info = RequestFurtherInformation.builder() + .reviewDate(LocalDate.of(2026, 3, 28)) .requestFurtherInformationReasonEnum(null) .build(); - // When - Event event = requestFurtherInformationService.buildEventWithDescription(requestFurtherInfo); + Event event = requestFurtherInformationService.buildEventWithDescription(info); - // Then - String expectedDescription = ""; + assertTrue(event.getDescription().contains("28 Mar 2026")); + assertFalse(event.getDescription().contains("Awaiting Information Reasons:")); + } - assertEquals(expectedDescription, event.getDescription()); + @Test + public void buildEventWithDescription_EmptyReasons() { + RequestFurtherInformation info = RequestFurtherInformation.builder() + .reviewDate(LocalDate.of(2026, 3, 28)) + .requestFurtherInformationReasonEnum(Collections.emptyList()) + .build(); + + Event event = requestFurtherInformationService.buildEventWithDescription(info); + + assertTrue(event.getDescription().contains("28 Mar 2026")); } + @Test + public void buildEventWithDescription_SingleDigitDay() { + RequestFurtherInformation info = RequestFurtherInformation.builder() + .reviewDate(LocalDate.of(2026, 3, 5)) + .requestFurtherInformationReasonEnum(Collections.singletonList( + RequestFurtherInformationReasonEnum.miamFurtherInformation + )) + .build(); + + Event event = requestFurtherInformationService.buildEventWithDescription(info); + + assertTrue(event.getDescription().contains("05 Mar 2026")); + } + + @Test + public void buildEventWithDescription_MultipleReasonTypes() { + RequestFurtherInformation info = RequestFurtherInformation.builder() + .reviewDate(LocalDate.of(2026, 5, 20)) + .requestFurtherInformationReasonEnum(Arrays.asList( + RequestFurtherInformationReasonEnum.miamFurtherInformation, + RequestFurtherInformationReasonEnum.dwpHmrcWhereaboutsUnknown, + RequestFurtherInformationReasonEnum.other + )) + .build(); + + Event event = requestFurtherInformationService.buildEventWithDescription(info); + + String desc = event.getDescription(); + assertTrue(desc.contains("20 May 2026")); + assertTrue(desc.contains("MIAM - further information required")); + assertTrue(desc.contains("DWP/HMRC - whereabouts unknown")); + assertTrue(desc.contains("Another reason that has not been listed")); + } } + From c737c1e7b02a4f0b9f418ab5507bd7156903bdd5 Mon Sep 17 00:00:00 2001 From: Bala Gangapatnam Date: Thu, 26 Mar 2026 13:16:31 +0000 Subject: [PATCH 39/42] adding Awating info for case issued --- .../prl/controllers/CallbackController.java | 5 +++- .../controllers/CallbackControllerTest.java | 26 +++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java index 96f23be7ab2..c239a99eddc 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java @@ -125,6 +125,7 @@ import static uk.gov.hmcts.reform.prl.constants.PrlLaunchDarklyFlagConstants.TASK_LIST_V2_FLAG; import static uk.gov.hmcts.reform.prl.constants.PrlLaunchDarklyFlagConstants.TASK_LIST_V3_FLAG; import static uk.gov.hmcts.reform.prl.enums.Event.SEND_TO_GATEKEEPER; +import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; import static uk.gov.hmcts.reform.prl.enums.State.SUBMITTED_PAID; import static uk.gov.hmcts.reform.prl.enums.YesOrNo.Yes; import static uk.gov.hmcts.reform.prl.utils.CaseUtils.getCaseData; @@ -703,7 +704,9 @@ public AboutToStartOrSubmitCallbackResponse addCaseNumberSubmitted( .findFirst(); previousState.ifPresent(s -> caseDataUpdated.put( VERIFY_CASE_NUMBER_ADDED, - SUBMITTED_PAID.getValue().equalsIgnoreCase(s) ? Yes.getDisplayedValue() : null + (SUBMITTED_PAID.getValue().equalsIgnoreCase(s) + || AWAITING_INFORMATION.getValue().equalsIgnoreCase(s)) + ? Yes.getDisplayedValue() : null )); caseDataUpdated.put(ISSUE_DATE_FIELD, LocalDate.now()); return AboutToStartOrSubmitCallbackResponse.builder() diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java index 70a496c3b18..1855cfb7f63 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java @@ -1186,6 +1186,32 @@ public void testAddCaseNumberStateSubmittedPaid() throws Exception { assertEquals(Yes.getDisplayedValue(),aboutToStartOrSubmitCallbackResponse.getData().get("isAddCaseNumberAdded")); } + @Test + public void testAddCaseNumberStateAwaitingInformation() throws Exception { + + CaseData caseData = CaseData.builder() + .issueDate(LocalDate.now()) + .build(); + + Map stringObjectMap = new HashMap<>(); + + when(objectMapper.convertValue(stringObjectMap, CaseData.class)).thenReturn(caseData); + when(userService.getUserDetails(Mockito.anyString())).thenReturn(userDetails); + when(caseEventService.findEventsForCase("1")) + .thenReturn(List.of(CaseEventDetail.builder().stateId( + uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION.getValue()).build())); + CallbackRequest callbackRequest = uk.gov.hmcts.reform.ccd.client.model + .CallbackRequest.builder() + .caseDetails(uk.gov.hmcts.reform.ccd.client.model.CaseDetails.builder() + .id(1L) + .data(stringObjectMap).build()).build(); + when(authorisationService.isAuthorized(any(),any())).thenReturn(true); + AboutToStartOrSubmitCallbackResponse aboutToStartOrSubmitCallbackResponse = callbackController + .addCaseNumberSubmitted(authToken, s2sToken, callbackRequest); + assertNotNull(aboutToStartOrSubmitCallbackResponse.getData().get("issueDate")); + assertEquals(Yes.getDisplayedValue(), aboutToStartOrSubmitCallbackResponse.getData().get("isAddCaseNumberAdded")); + } + @Test public void aboutToSubmitCaseCreationToC100ForNullCaseNameWithException() { From ca96a9e0f200053987c61fce63b54221ebc5e28f Mon Sep 17 00:00:00 2001 From: Bala Gangapatnam Date: Fri, 27 Mar 2026 13:56:47 +0000 Subject: [PATCH 40/42] refactor the callback controller for Case Issued --- .../prl/controllers/CallbackController.java | 24 ++++++++++++------- .../controllers/CallbackControllerTest.java | 10 ++++++-- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java b/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java index c239a99eddc..b4c95f7b14c 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/controllers/CallbackController.java @@ -126,6 +126,7 @@ import static uk.gov.hmcts.reform.prl.constants.PrlLaunchDarklyFlagConstants.TASK_LIST_V3_FLAG; import static uk.gov.hmcts.reform.prl.enums.Event.SEND_TO_GATEKEEPER; import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; +import static uk.gov.hmcts.reform.prl.enums.State.CASE_ISSUED; import static uk.gov.hmcts.reform.prl.enums.State.SUBMITTED_PAID; import static uk.gov.hmcts.reform.prl.enums.YesOrNo.Yes; import static uk.gov.hmcts.reform.prl.utils.CaseUtils.getCaseData; @@ -697,17 +698,25 @@ public AboutToStartOrSubmitCallbackResponse addCaseNumberSubmitted( ) { if (authorisationService.isAuthorized(authorisation, s2sToken)) { Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); + CaseData caseData = getCaseData(callbackRequest.getCaseDetails(), objectMapper); List eventsForCase = caseEventService.findEventsForCase(String.valueOf(callbackRequest.getCaseDetails().getId())); - Optional previousState = eventsForCase.stream() + Optional previousStateOpt = eventsForCase.stream() .map(CaseEventDetail::getStateId) .findFirst(); - previousState.ifPresent(s -> caseDataUpdated.put( - VERIFY_CASE_NUMBER_ADDED, - (SUBMITTED_PAID.getValue().equalsIgnoreCase(s) - || AWAITING_INFORMATION.getValue().equalsIgnoreCase(s)) - ? Yes.getDisplayedValue() : null - )); + + if (previousStateOpt.isPresent()) { + String previousState = previousStateOpt.get(); + if (AWAITING_INFORMATION.getValue().equalsIgnoreCase(previousState)) { + caseDataUpdated.put(VERIFY_CASE_NUMBER_ADDED, Yes.getDisplayedValue()); + caseData = caseData.toBuilder().state(CASE_ISSUED).build(); + caseDataUpdated.putAll(caseSummaryTab.updateTab(caseData)); + caseDataUpdated.put(STATE_FIELD, CASE_ISSUED.getValue()); + } else if (SUBMITTED_PAID.getValue().equalsIgnoreCase(previousState)) { + caseDataUpdated.put(VERIFY_CASE_NUMBER_ADDED, Yes.getDisplayedValue()); + } + } + caseDataUpdated.put(ISSUE_DATE_FIELD, LocalDate.now()); return AboutToStartOrSubmitCallbackResponse.builder() .data(caseDataUpdated) @@ -943,4 +952,3 @@ public AboutToStartOrSubmitCallbackResponse updateOtherPeoplePartyDetails( } } } - diff --git a/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java b/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java index 1855cfb7f63..4ccdedda793 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/controllers/CallbackControllerTest.java @@ -150,6 +150,7 @@ import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.ISSUED_STATE; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.ROLES; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.STAFF; +import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.STATE_FIELD; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.SUBMITTED_STATE; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.TASK_LIST_VERSION_V2; import static uk.gov.hmcts.reform.prl.constants.PrlAppsConstants.TASK_LIST_VERSION_V3; @@ -166,6 +167,8 @@ import static uk.gov.hmcts.reform.prl.enums.OrderTypeEnum.childArrangementsOrder; import static uk.gov.hmcts.reform.prl.enums.RelationshipsEnum.father; import static uk.gov.hmcts.reform.prl.enums.RelationshipsEnum.specialGuardian; +import static uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION; +import static uk.gov.hmcts.reform.prl.enums.State.CASE_ISSUED; import static uk.gov.hmcts.reform.prl.enums.State.SUBMITTED_PAID; import static uk.gov.hmcts.reform.prl.enums.YesOrNo.No; import static uk.gov.hmcts.reform.prl.enums.YesOrNo.Yes; @@ -1194,22 +1197,25 @@ public void testAddCaseNumberStateAwaitingInformation() throws Exception { .build(); Map stringObjectMap = new HashMap<>(); - + stringObjectMap.put(STATE_FIELD, AWAITING_INFORMATION); when(objectMapper.convertValue(stringObjectMap, CaseData.class)).thenReturn(caseData); when(userService.getUserDetails(Mockito.anyString())).thenReturn(userDetails); when(caseEventService.findEventsForCase("1")) .thenReturn(List.of(CaseEventDetail.builder().stateId( - uk.gov.hmcts.reform.prl.enums.State.AWAITING_INFORMATION.getValue()).build())); + AWAITING_INFORMATION.getValue()).build())); CallbackRequest callbackRequest = uk.gov.hmcts.reform.ccd.client.model .CallbackRequest.builder() .caseDetails(uk.gov.hmcts.reform.ccd.client.model.CaseDetails.builder() .id(1L) .data(stringObjectMap).build()).build(); when(authorisationService.isAuthorized(any(),any())).thenReturn(true); + when(caseSummaryTab.updateTab(caseData.toBuilder().state(CASE_ISSUED).build())).thenReturn(Map.of()); AboutToStartOrSubmitCallbackResponse aboutToStartOrSubmitCallbackResponse = callbackController .addCaseNumberSubmitted(authToken, s2sToken, callbackRequest); assertNotNull(aboutToStartOrSubmitCallbackResponse.getData().get("issueDate")); assertEquals(Yes.getDisplayedValue(), aboutToStartOrSubmitCallbackResponse.getData().get("isAddCaseNumberAdded")); + assertEquals(CASE_ISSUED.getValue(), aboutToStartOrSubmitCallbackResponse.getData().get(STATE_FIELD)); + verify(caseSummaryTab).updateTab(caseData.toBuilder().state(CASE_ISSUED).build()); } @Test From da0d1840cda70e9e4e3cbd53f9e3a9a605b76b09 Mon Sep 17 00:00:00 2001 From: tonym Date: Thu, 26 Mar 2026 08:44:33 +0000 Subject: [PATCH 41/42] FPVTL-2108 Populating HWF_APP_LIST when the case state AWAITING_INFORMATION --- build.gradle | 1 - .../reform/prl/services/HelpWithFeesService.java | 5 ++++- .../prl/services/HelpWithFeesServiceTest.java | 15 +++++++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 4d0271b8b7c..e15a3a75dd5 100644 --- a/build.gradle +++ b/build.gradle @@ -707,4 +707,3 @@ bootWithCCD { test { useJUnitPlatform() } - diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java index 56a68d571de..887605bd6a1 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java @@ -176,7 +176,10 @@ public Map handleAboutToStart(CaseDetails caseDetails) { CaseData caseData = CaseUtils.getCaseData(caseDetails, objectMapper); if (null != caseData) { - if (State.SUBMITTED_NOT_PAID.getValue().equalsIgnoreCase(caseDetails.getState()) && YesOrNo.Yes.equals(caseData.getHelpWithFees())) { + if ((State.SUBMITTED_NOT_PAID.getValue().equalsIgnoreCase(caseDetails.getState()) + || State.AWAITING_INFORMATION.getValue().equalsIgnoreCase(caseDetails.getState())) + && YesOrNo.Yes.equals(caseData.getHelpWithFees())) { + String dynamicElement = String.format("Child arrangements application C100 - %s", CommonUtils.formatLocalDateTime(caseData.getCaseSubmittedTimeStamp(), DATE_TIME_OF_SUBMISSION_FORMAT)); diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java index 879842d445c..74cbdc7bfc3 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java @@ -94,6 +94,21 @@ public void testAboutToStart() { assertEquals("C100",response.get("caseTypeOfApplication")); } + @Test + public void testAboutToStartAwaitingInformation() { + CaseDetails awaitingInfoCaseDetails = CaseDetails.builder() + .id(123L) + .state(State.AWAITING_INFORMATION.getValue()) + .build(); + + when(objectMapper.convertValue(awaitingInfoCaseDetails.getData(), CaseData.class)).thenReturn(casedata); + Map response = helpWithFeesService.handleAboutToStart(awaitingInfoCaseDetails); + assertNotNull(response); + DynamicList dynamicList = (DynamicList) response.get("hwfAppList"); + assertEquals("Child arrangements application C100 - 24/06/2024 10:46:55", dynamicList.getListItems().get(0).getLabel()); + assertEquals("C100", response.get("caseTypeOfApplication")); + } + @Test public void testAboutToSubmitWithoutDateSubmitted() { casedata = casedata.toBuilder() From c9b0c05a145450399015926a687341e365732c2a Mon Sep 17 00:00:00 2001 From: tonym Date: Sun, 29 Mar 2026 11:06:29 +0100 Subject: [PATCH 42/42] FPVTL-2108 On the about to submit stage of the HWF event, handling the scenario where the case status is AWAITING_INFORMATION --- .../prl/services/HelpWithFeesService.java | 6 +- .../prl/services/HelpWithFeesServiceTest.java | 56 +++++++++++++++++++ 2 files changed, 60 insertions(+), 2 deletions(-) diff --git a/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java b/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java index 887605bd6a1..3f10c9fcab1 100644 --- a/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java +++ b/src/main/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesService.java @@ -97,7 +97,8 @@ public ResponseEntity handleSubmitted() { public Map setCaseStatus(CallbackRequest callbackRequest, String authorisation) { Map caseDataUpdated = callbackRequest.getCaseDetails().getData(); CaseData caseData = CaseUtils.getCaseData(callbackRequest.getCaseDetails(), objectMapper); - if (callbackRequest.getCaseDetails().getState().equalsIgnoreCase((State.SUBMITTED_NOT_PAID.getValue()))) { + if (callbackRequest.getCaseDetails().getState().equalsIgnoreCase(State.SUBMITTED_NOT_PAID.getValue()) + || callbackRequest.getCaseDetails().getState().equalsIgnoreCase(State.AWAITING_INFORMATION.getValue())) { caseDataUpdated.put(CASE_STATUS, CaseStatus.builder() .state(SUBMITTED_PAID.getLabel()) .build()); @@ -239,7 +240,8 @@ public Map populateHwfDynamicData(CaseDetails caseDetails) { CaseData caseData = CaseUtils.getCaseData(caseDetails, objectMapper); Map caseDataUpdated = caseDetails.getData(); log.info("case state :" + caseDetails.getState()); - if (State.SUBMITTED_NOT_PAID.getValue().equalsIgnoreCase(caseDetails.getState())) { + if (State.SUBMITTED_NOT_PAID.getValue().equalsIgnoreCase(caseDetails.getState()) + || State.AWAITING_INFORMATION.getValue().equalsIgnoreCase(caseDetails.getState())) { log.info("populate data for C100 application"); caseDataUpdated.put(HWF_APPLICATION_DYNAMIC_DATA_LABEL, String.format( diff --git a/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java b/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java index 74cbdc7bfc3..4efda9e4dc2 100644 --- a/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java +++ b/src/test/java/uk/gov/hmcts/reform/prl/services/HelpWithFeesServiceTest.java @@ -151,6 +151,48 @@ public void testAboutToSubmitWithDateSubmitted() { assertNull(response.get("dateSubmitted")); } + @Test + public void testAboutToSubmitAwaitingInformationWithoutDateSubmitted() { + casedata = casedata.toBuilder() + .state(State.AWAITING_INFORMATION) + .build(); + + CaseDetails awaitingInfoCaseDetails = CaseDetails.builder() + .id(123L) + .state(State.AWAITING_INFORMATION.getValue()) + .data(new HashMap<>()) + .build(); + + when(objectMapper.convertValue(awaitingInfoCaseDetails.getData(), CaseData.class)).thenReturn(casedata); + Map response = helpWithFeesService + .setCaseStatus(CallbackRequest.builder().caseDetails(awaitingInfoCaseDetails).build(), "testAuth"); + assertNotNull(response); + CaseStatus caseStatus = (CaseStatus) response.get("caseStatus"); + assertEquals("Submitted", caseStatus.getState()); + assertNotNull(response.get("dateSubmitted")); + } + + @Test + public void testAboutToSubmitAwaitingInformationWithDateSubmitted() { + casedata = casedata.toBuilder() + .state(State.AWAITING_INFORMATION) + .dateSubmitted("01 01 2024") + .build(); + + CaseDetails awaitingInfoCaseDetails = CaseDetails.builder() + .id(123L) + .state(State.AWAITING_INFORMATION.getValue()) + .data(new HashMap<>()) + .build(); + + when(objectMapper.convertValue(awaitingInfoCaseDetails.getData(), CaseData.class)).thenReturn(casedata); + Map response = helpWithFeesService + .setCaseStatus(CallbackRequest.builder().caseDetails(awaitingInfoCaseDetails).build(), "testAuth"); + assertNotNull(response); + CaseStatus caseStatus = (CaseStatus) response.get("caseStatus"); + assertEquals("Submitted", caseStatus.getState()); + assertNull(response.get("dateSubmitted")); + } @Test public void testAboutToSubmitApplicationsWithinProceedingsProcessUrgentFeesIsNull() { @@ -294,6 +336,20 @@ public void testPopulateHwfDynamicData() { assertNotNull(hwfApplicationDynamicData); } + @Test + public void testPopulateHwfDynamicDataAwaitingInformation() { + CaseDetails awaitingInfoCaseDetails = CaseDetails.builder() + .id(123L) + .state(State.AWAITING_INFORMATION.getValue()) + .data(casedata.toMap(new ObjectMapper())) + .build(); + when(objectMapper.convertValue(awaitingInfoCaseDetails.getData(), CaseData.class)).thenReturn(casedata); + Map response = helpWithFeesService.populateHwfDynamicData(awaitingInfoCaseDetails); + assertNotNull(response); + String hwfApplicationDynamicData = (String) response.get(HWF_APPLICATION_DYNAMIC_DATA_LABEL); + assertNotNull(hwfApplicationDynamicData); + } + @Test public void testPopulateHwfDynamicData_c2Awp() { UUID applicationId = UUID.randomUUID();